-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.59 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.59 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
{
"name": "client",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"axios": "^0.14.0",
"bulma": "^0.2.1",
"font-awesome": "^4.7.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "^2.8.1"
},
"devDependencies": {
"axios-mock-adapter": "^1.7.1",
"babel-core": "^6.17.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"codecov": "^1.0.1",
"css-loader": "^0.25.0",
"enzyme": "^2.6.0",
"file-loader": "^0.9.0",
"font-awesome-webpack": "0.0.4",
"http-server": "^0.9.0",
"jest": "^16.0.2",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"npm-run-all": "^3.1.0",
"path": "^0.12.7",
"react-addons-test-utils": "^15.3.2",
"react-test-renderer": "^15.3.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.1.0-beta.27"
},
"scripts": {
"test": "jest",
"build": "webpack",
"webpack": "webpack -w",
"serve": "http-server -o -c 1 -p 80",
"dev": "npm-run-all --parallel webpack serve",
"coverage": "jest --coverage"
},
"jest": {
"modulePaths": [
"app"
],
"collectCoverage": true,
"globals": {
"HOST": "http://localhost:3000",
"jsonStubHeaders": ""
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/tests/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/tests/__mocks__/styleMock.js"
}
},
"author": "",
"license": "ISC"
}