-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·31 lines (31 loc) · 831 Bytes
/
package.json
File metadata and controls
executable file
·31 lines (31 loc) · 831 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
{
"name": "helloworld",
"version": "1.0.0",
"description": "demo init",
"main": "index.js",
"scripts": {
"client-install": "npm install --prefix client",
"client": "npm start --prefix client",
"start": "node index.js",
"server": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "zhangyuncheng",
"license": "ISC",
"dependencies": {
"art-template": "^4.13.2",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"express-art-template": "^1.0.1",
"express-ws": "^4.0.0",
"lodash": "^4.17.11",
"mysql": "github:mysqljs/mysql",
"silly-datetime": "^0.1.2"
},
"devDependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"nodemon": "^1.18.10"
}
}