-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (50 loc) · 1.4 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
{
"name": "Game-of-Life",
"version": "1.0.0",
"private": false,
"homepage": "http://vijayabharathib.github.io/fcc-project-game-of-life",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"extend-tape": "^1.2.0",
"faucet": "0.0.1",
"gh-pages": "^0.12.0",
"ignore-styles": "^5.0.1",
"node-sass": "^4.1.1",
"node-sass-import": "^1.1.1",
"npm-watch": "^0.1.7",
"nyc": "^10.0.0",
"react-addons-test-utils": "^15.4.1",
"react-scripts": "0.8.4",
"redux-devtools": "^3.3.1",
"tape": "^4.6.3",
"tape-jsx-equals": "^1.0.0"
},
"dependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"redux": "^3.6.0"
},
"watch": {
"local-test": "{src,test}/**/*.js",
"style": {
"patterns": [
"src"
],
"extensions": "scss",
"quiet": true
}
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"deploy": "npm run build&&gh-pages -d build",
"style": "node-sass -r src/styles/scss -o src/styles/css --importer node_modules/node-sass-import",
"local-test": "babel-node node_modules/.bin/tape --require ignore-styles test/**/*.test.js | faucet",
"test": "nyc npm run local-test && nyc report --reporter=lcov",
"watch": "npm-watch"
}
}