forked from hrnyc23-hammer/project-greenfield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.27 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
76
77
{
"name": "greenfield",
"version": "1.0.0",
"description": "",
"jest": {
"preset": "jest-puppeteer",
"verbose": true
},
"scripts": {
"test": "jest",
"start": "nodemon transpile/server.js",
"build": "webpack -d --watch",
"production_build": "webpack -p && babel src -d transpile",
"dev_build": "webpack -d && babel src -d transpile",
"clean": "eslint src/ && eslint server.js",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hrnyc23-adamantium/project-greenfield.git"
},
"keywords": [],
"author": "lancerutkin, kevypark, tomcernera, Qwill",
"license": "ISC",
"bugs": {
"url": "https://github.com/hrnyc23-adamantium/project-greenfield/issues"
},
"homepage": "https://github.com/hrnyc23-adamantium/project-greenfield#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^3.0.0",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-app": "^5.0.1",
"jest": "^24.8.0",
"jest-puppeteer": "^4.3.0",
"nodemon": "^1.19.1",
"puppeteer": "^1.18.1",
"redux-mock-store": "^1.5.3",
"style-loader": "^0.23.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"@material-ui/core": "^4.2.1",
"@material-ui/icons": "^4.2.1",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-static-gzip": "^1.1.3",
"material-ui-icons": "^1.0.0-beta.36",
"moment": "^2.24.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-highlight-words": "^0.16.0",
"react-hot-loader": "^4.12.6",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"style-it": "^2.1.4",
"webfontloader": "^1.6.28"
}
}