-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "m42",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "node ./server/main.js",
"dev": "concurrently npm:dev-*",
"dev-frontend": "vite --host",
"dev-backend": "nodemon --ext js server/main.js",
"build": "vite build",
"clear": "node server/clearServer.js"
},
"nodemonConfig": {
"ignore": [
"server/r/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jw-12138/m42.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jw-12138/m42/issues"
},
"homepage": "https://github.com/jw-12138/m42#readme",
"dependencies": {
"@vitejs/plugin-vue": "^3.0.1",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"concurrently": "^7.5.0",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"crypto-random-string": "^5.0.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"lodash": "^4.17.21",
"nanoid": "2.1.11",
"sass": "^1.54.4",
"vite": "^3.0.5",
"vue": "^3.2.37",
"ws": "^8.8.1"
},
"devDependencies": {
"nodemon": "^2.0.19"
}
}