-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.73 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.73 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
{
"name": "hanger",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm dist/static/bundle.js",
"start": "NODE_ENV=production nodemon server/server.js",
"build": "NODE_ENV=production webpack",
"dev": "NODE_ENV=development nodemon server/server.js & webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonligg/hanger.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonligg/hanger/issues"
},
"homepage": "https://github.com/jasonligg/hanger#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/runtime": "^7.12.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"css-loader": "^5.0.1",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"http-proxy-middleware": "^1.0.6",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"webpack": "^4.44.2",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"mapbox-gl": "^1.13.0",
"node-fetch": "^2.6.1",
"pg": "^8.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"sass": "^1.29.0"
}
}