-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 799 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 799 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
{
"name": "phone_book_app",
"version": "1.0.0",
"description": "Basic phone book application",
"main": "index.js",
"scripts": {
"compile": "tsc",
"start:dev-full": "concurrently \"nodemon server.js\" \"npm run start:dev --prefix client\"",
"start": "node server.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"concurrently": "^3.5.1",
"express": "^4.16.3",
"mysql": "^2.15.0"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/mysql": "^2.15.5",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^10.5.7",
"nodemon": "^1.18.3",
"typescript": "^3.0.1"
}
}