forked from wunderpuss-photogenicus-1/API-Gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.8 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
{
"name": "api-gateway",
"version": "1.0.0",
"description": "API gateway",
"main": "index.js",
"directories": {
"test": "test"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server/server.js",
"build-win": "SET NODE_ENV=production&&webpack",
"dev-win": "concurrently \"nodemon server/server.js\" \"SET NODE_ENV=development&&webpack serve --open\"",
"build": "SET NODE_ENV=production webpack",
"dev": "webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tngraves/API-Gateway.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tngraves/API-Gateway/issues"
},
"homepage": "https://github.com/tngraves/API-Gateway#readme",
"dependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"babel": "^6.23.0",
"babel-loader": "^8.2.2",
"bcryptjs": "^2.4.3",
"concurrently": "^6.0.0",
"cookie-parser": "^1.4.5",
"css-loader": "^5.2.0",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.17.1",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^5.3.1",
"mongoose": "^5.12.3",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"style-loader": "^2.0.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"devDependencies": {
"webpack": "^5.30.0"
}
}