-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.93 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
64
65
66
67
68
69
70
71
72
{
"name": "restful-react-from-scratch",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "run-p dev:client dev:server",
"dev:client": "npm run build -- --watch",
"dev:server": "nodemon server",
"build": "webpack --config client/webpack.config.js",
"start": "node server",
"test": "jest --verbose --watchAll"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
]
},
"jest": {
"setupFiles": [
"./tests/client/config/jsdom.js",
"./tests/client/config/enzyme.js"
],
"moduleNameMapper": {
"\\.(scss|css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"dependencies": {
"@babel/polyfill": "^7.6.0",
"express": "^4.17.1",
"jest-transform-css": "^2.0.0",
"nock": "^11.3.5",
"react-accessible-accordion": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.6.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"nock": "^10.0.6",
"jest": "^24.9.0",
"jsdom": "^14.1.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"nodemon": "^1.19.2",
"npm-run-all": "^4.1.5",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"superagent": "^5.1.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
}
}