-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.14 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
66
67
68
69
70
71
72
73
74
75
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "PORT=1337 webpack -w & node server.js"
},
"repository": {
"type": "git",
"url": "git+https://accimeesterlin@bitbucket.org/accimeesterlin/hello-world.git"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "identity-obj-proxy",
"\\.(css|less|scss)$": "identity-obj-proxy"
},
"testResultsProcessor": "./node_modules/jest-junit"
},
"jest-junit": {
"suiteName": "Unit Tests",
"output": "./__test__/junit.xml",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}",
"ancestorSeparator": " � ",
"usePathForSuiteName": "true"
},
"author": "",
"license": "ISC",
"homepage": "https://bitbucket.org/accimeesterlin/hello-world#readme",
"dependencies": {
"axios": "^0.16.2",
"bcrypt": "^1.0.2",
"chai": "^4.1.0",
"express": "^4.15.3",
"js-cookie": "^2.1.4",
"jsonwebtoken": "^7.4.1",
"mysql": "^2.13.0",
"nodemon": "^1.11.0",
"qs": "^6.5.0",
"react": "^15.6.1",
"react-bootstrap": "^0.31.2",
"react-dom": "^15.6.1",
"react-notification-system": "^0.2.15",
"react-redux": "^5.0.5",
"react-router": "^3.0.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"webpack-hot-middleware": "^2.18.2"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.5",
"enzyme": "^2.9.1",
"jest": "^20.0.4",
"jest-css-modules": "^1.1.0",
"jest-html-reporter": "^0.5.1",
"jest-junit": "^2.1.0",
"node-sass": "^4.5.3",
"react-hot-loader": "^1.3.1",
"redux-immutable-state-invariant": "^2.0.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.2.0",
"webpack-dev-middleware": "^1.11.0",
"webpack-dev-server": "^2.6.1"
}
}