-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.19 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.19 KB
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
62
{
"name": "spotifood",
"version": "0.1.0",
"homepage": "https://matheusmr13.github.io/react-stack-example/",
"dependencies": {
"material-ui": "^0.20.0",
"moment": "^2.20.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-content-loader": "^2.0.2",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-scripts": "1.1.0",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"eslint-config-airbnb": "^16.1.0",
"gh-pages": "^1.1.0",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.2",
"redux-saga-tester": "^1.0.378",
"sass-lint": "^1.12.1"
},
"scripts": {
"ci": "npm run build-css && npm run lint && npm run test:ci && npm run build",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start-js": "cross-env NODE_PATH=./src react-scripts start",
"eject": "react-scripts eject",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && cross-env NODE_PATH=./src react-scripts build",
"test": "cross-env NODE_PATH=./src react-scripts test --env=jsdom",
"test:ci": "cross-env CI=true npm test -- --coverage",
"jslint": "./node_modules/eslint/bin/eslint.js . -c .eslintrc --ignore-path .eslintignore --ext .jsx,.js",
"jslint:fix": "./node_modules/eslint/bin/eslint.js . --fix",
"sasslint": "sass-lint -c .sass-lint.yml 'src/**/*.scss' -v -q --max-warnings 0",
"lint": "npm run sasslint && npm run jslint",
"build-css": "node-sass-chokidar src/ -o src/ --include-path ./src",
"watch-css": "npm run build-css && node-sass-chokidar src/ --include-path ./src -o src/ --watch --source-map-root src/ --recursive"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!src/registerServiceWorker.js",
"!**/coverage/**",
"!**/node_modules/**",
"!**/.vscode/**",
"!**/build/**",
"!src/index.js",
"!src/views/main.jsx",
"!src/views/mui-theme.js"
]
}
}