-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.95 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
61
62
63
64
65
{
"name": "jest-workshop",
"version": "1.0.0",
"description": "Jest workshop",
"scripts": {
"clean": "rm -fr ./dist",
"build": "npm run clean && npm run build:front && npm run build:back",
"build:back": "babel -d ./dist/back ./src/back",
"build:front": "webpack --config ./src/front/webpack.config.js --mode production",
"lint": "eslint ./src ./test",
"test": "jest",
"front": "webpack-dev-server --config ./src/front/webpack.config.js --mode development",
"back": "nodemon --exec babel-node --ignore src/front src/back/main.js",
"start": "npm run build && node dist/back/main.js"
},
"engines": {
"node": ">= 8.9.x <= 9.x",
"npm": ">= 5.x",
"yarn": ">= 1.3.0"
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.16.3",
"morgan": "^1.9.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^23.0.0-alpha.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bulma": "^0.6.2",
"classnames": "^2.2.5",
"css-loader": "^0.28.11",
"deepfreeze": "^2.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-config-unobtrusive": "^1.2.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.0.7",
"jest": "^22.4.2",
"nodemon": "^1.17.2",
"prettier": "^1.11.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-mock-store": "^1.5.1",
"redux-thunk": "^2.2.0",
"style-loader": "^0.20.3",
"supertest": "^3.0.0",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1"
}
}