-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 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
{
"name": "front-end-test-2017",
"version": "1.0.0",
"description": "Dressipi Front-end Test 2017",
"main": "index.js",
"author": "Rob Bevan",
"license": "MIT",
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
},
"setupFiles": [
"<rootDir>/shim.js"
]
},
"dependencies": {
"autoprefixer": "^7.1.2",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-wrap-in-js": "^1.1.1",
"express": "^4.16.2",
"glob": "^7.1.2",
"lodash": "^4.17.4",
"next": "latest",
"node-sass": "^4.5.3",
"normalize.css": "^7.0.0",
"object-keys": "^1.0.11",
"postcss-easy-import": "^2.1.0",
"postcss-loader": "^2.0.6",
"raw-loader": "^0.5.1",
"react": "^16.0.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.0.0",
"react-infinite-scroller": "^1.1.1",
"sass-loader": "^6.0.6",
"superagent": "^3.8.1"
},
"devDependencies": {
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.0.0",
"react-test-renderer": "^16.0.0",
"sinon": "^4.1.2"
},
"scripts": {
"test": "jest",
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js"
}
}