-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.29 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.29 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
73
74
75
76
77
78
79
80
81
82
{
"name": "vibrant-corpse",
"version": "1.0.0",
"description": "Brainstorming app based on a word game invented by the Surrealists",
"main": "server.js",
"engines": {
"node": "10.14.2"
},
"scripts": {
"test": "jest",
"start": "node server.js",
"dev": "npm start & webpack-dev-server --mode=development",
"build": "webpack --mode=production",
"heroku-postbuild": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LemonyDesign/vibrant-corpse.git"
},
"keywords": [
"React",
"Node",
"Heroku"
],
"author": "Melanie Ashby",
"license": "ISC",
"bugs": {
"url": "https://github.com/LemonyDesign/vibrant-corpse/issues"
},
"homepage": "https://github.com/LemonyDesign/vibrant-corpse#readme",
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"classnames": "^2.2.6",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"pg-promise": "^10.3.1",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-icons": "^3.8.0",
"react-redux": "^6.0.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.1.0",
"css-loader": "^2.1.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-fetch-mock": "^2.1.2",
"node-sass": "^4.13.0",
"prettier": "^1.18.2",
"react-test-renderer": "^16.11.0",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0"
}
}