-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "proshop-v2",
"version": "1.0.0",
"description": "eCommerce application built with the MERN stack",
"type": "module",
"main": "server.js",
"scripts": {
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"data:import": "node backend/seeder.js",
"data:destroy": "node backend/seeder.js -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zyusong0614/proshop.git"
},
"author": "Zhengyu Song",
"license": "MIT",
"bugs": {
"url": "https://github.com/zyusong0614/proshop/issues"
},
"homepage": "https://github.com/zyusong0614/proshop#readme",
"dependencies": {
"assert": "^2.0.0",
"bcryptjs": "^2.4.3",
"browserify-fs": "^1.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"crypto-browserify": "^3.12.0",
"express": "^4.18.2",
"https-browserify": "^1.0.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.3.1",
"net-browserify": "^0.2.4",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"react-scripts": "^5.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tls-browserify": "^0.2.2",
"url": "^0.11.1",
"util": "^0.12.5"
},
"devDependencies": {
"concurrently": "^8.2.0",
"dotenv": "^16.3.1",
"nodemon": "^2.0.22"
}
}