-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "contract-whist",
"version": "0.1.0",
"author": {
"name": "Billy Reilly",
"email": "billy_reilly@hotmail.co.uk",
"url": "http://billyreilly.co.uk"
},
"dependencies": {
"bootstrap": "^3.3.7",
"classnames": "^2.2.5",
"flux": "^3.1.3",
"immutable": "^3.8.1",
"keymirror": "^0.1.1",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.0.2",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-addons-css-transition-group": "^15.6.2",
"react-bootstrap": "^0.31.2",
"react-dom": "^15.6.1",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.5.0",
"eslint-plugin-react": "^7.3.0",
"react-scripts": "1.0.11"
},
"scripts": {
"build-css": "node-sass-chokidar src/styles -o src/styles",
"watch-css": "npm run build-css && node-sass-chokidar src/styles -o src/styles --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}