-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.81 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
{
"name": "example",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"start": "npm run build && node src/server.js",
"debug": "concurrently --kill-others \"npm run build-watch\" \"npm run start-watch\"",
"start-watch": "nodemon src/server.js",
"build": "webpack --config webpack.config.js",
"build-watch": "webpack --config webpack.config.js --watch",
"test": "npm run test:unit && npm run test:feature",
"test:unit": "jest",
"test:feature": "cucumber-js -f node_modules/cucumber-pretty ./src/tests",
"lint": "eslint ./src"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-plugin-react-css-modules": "^3.3.2",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"jsonwebtoken": "^8.2.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"request": "^2.85.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"css-loader": "^0.28.7",
"cucumber": "^4.2.1",
"cucumber-pretty": "^1.4.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^0.11.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^22.4.3",
"react-test-renderer": "^16.3.2",
"style-loader": "^0.19.1",
"supertest": "^3.0.0",
"webpack": "^3.10.0"
}
}