-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 842 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 842 Bytes
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
{
"name": "shipping-proxy",
"version": "1.0.0",
"description": "Proxy server for Etsy project",
"main": "server.js",
"scripts": {
"test": "jest",
"dev-server": "nodemon server.js",
"start": "pm2 start server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FEC-Linka/shipping-proxy.git"
},
"author": "Tammy Treit",
"license": "ISC",
"bugs": {
"url": "https://github.com/FEC-Linka/shipping-proxy/issues"
},
"homepage": "https://github.com/FEC-Linka/shipping-proxy#readme",
"dependencies": {
"axios": "^0.20.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"node": "^14.8.0",
"pm2": "^4.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"jest": "^26.4.0",
"nodemon": "^2.0.4"
}
}