-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "next-react-components",
"version": "1.0.1",
"description": "Next React Components CSS and JS",
"main": "index.js",
"bin": {
"nrc": "./dist/bin/nrc"
},
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"dev": "next",
"build": "taskr",
"export": "next export",
"start": "next start",
"test": "ava",
"lint": "standard 'packages/**/*.js' 'pages/**/*.js'",
"fix": "standard --fix 'packages/**/*.js' 'pages/**/*.js'",
"deploy": "next build && next export && git add out/ && git commit -m \"Deploy gh-pages\" && git subtree push --prefix out origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anotherplanet-io/Next-React-Components.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/anotherplanet-io/Next-React-Components/issues"
},
"homepage": "https://github.com/anotherplanet-io/Next-React-Components#readme",
"dependencies": {
"deepmerge": "^2.1.0",
"highlight.js": "^9.12.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"styled-jsx": "^2.2.5"
},
"devDependencies": {
"@taskr/babel": "^1.1.0",
"@taskr/clear": "^1.1.0",
"@taskr/esnext": "^1.1.0",
"@taskr/watch": "^1.1.0",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-define": "^1.3.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"next": "^5.0.0",
"node-notifier": "^5.2.1",
"prop-types": "^15.6.1",
"taskr": "^1.1.0"
},
"peerDependencies": {
"next": "^5.0.0"
}
}