-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "neal-react",
"version": "0.2.5",
"description": "react components for startup landing pages.",
"repository": "https://github.com/dennybritz/neal-react",
"main": "build/app.js",
"scripts": {
"clean": "rimraf ./build",
"build": "babel js --out-dir build",
"start": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext js,jsx js/"
},
"author": "Denny Britz",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.7.2",
"bootstrap": ">4.0.0-alpha",
"classnames": "2.x.x"
},
"peerDependencies": {
"react": ">=0.14.7 || >15.0.0-rc"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^4.1.8",
"babel-plugin-syntax-class-properties": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.0.0",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-react": "^3.16.1",
"rimraf": "^2.5.2"
}
}