-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.94 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.94 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
63
{
"name": "library",
"version": "0.1.0",
"private": true,
"dependencies": {
"enzyme-adapter-react-16": "^1.1.0",
"history": "^4.7.2",
"jest-enzyme": "^4.0.1",
"local-storage": "^1.4.2",
"quagga": "^0.12.1",
"react": "^16.1.1",
"react-bootstrap": "^0.31.5",
"react-dom": "^16.1.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "next",
"react-test-renderer": "^16.2.0",
"redux": "^3.7.2",
"redux-act": "^1.5.0",
"redux-logger": "^3.0.6",
"redux-observable": "^0.17.0",
"rxjs": "^5.5.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-inline-import": "^2.0.6",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cors": "^2.8.4",
"create-react-app-sass": "^1.1.0",
"enzyme": "^3.2.0",
"graphql": "^0.11.7",
"graphql-server-express": "^1.2.0",
"graphql-subscriptions": "^0.5.5",
"graphql-tools": "^2.11.0",
"mongodb": "^2.2.33",
"nock": "^9.1.0",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.2",
"react-scripts": "1.0.17",
"redux-mock-store": "^1.3.0",
"subscriptions-transport-ws": "^0.9.2"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"test-coverage": "react-scripts test --env=jsdom --coverage",
"eject": "react-scripts eject",
"server": "babel-node server"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!<rootDir>/node_modules/",
"!<rootDir>/path/to/dir/"
]
}
}