-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 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
{
"name": "RecipieBox",
"version": "0.1.0",
"private": true,
"homepage": "http://vijayabharathib.github.io/fcc-project-react-recipies",
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"concurrently": "^3.1.0",
"coveralls": "^2.11.15",
"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": {
"node-uuid": "^1.4.7",
"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": {
"style": "node-sass -r src/styles/scss -o src/styles/css --importer node_modules/node-sass-import",
"work": "concurrently --kill-others --raw \"npm start\" \"npm run -s watch\"",
"start": "react-scripts start",
"build": "react-scripts build",
"local-test": "babel-node node_modules/.bin/tape --require ignore-styles test/**/*.test.js | faucet",
"test": "npm run coveralls",
"test_original": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "npm run build&&gh-pages -d build",
"report": "nyc npm run local-test && nyc report --reporter=lcov",
"coveralls": "nyc npm run local-test && nyc report --reporter=text-lcov | coveralls",
"watch": "npm-watch",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
}
}