-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·30 lines (30 loc) · 954 Bytes
/
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
{
"name": "us-infographics-server",
"version": "1.0.0",
"description": "Minimal application for US infographics.",
"main": "index.js",
"scripts": {
"test": "cd server && npm run test && cd ../client && npm run lint && cd ../",
"start": "npm run install:server && cd server && npm run start:heroku",
"install:dependencies": "npm run install:server && npm run install:client",
"buildclient": "cd client && npm run build && cd ../",
"install:client": "cd client && npm i && cd ../",
"install:server": "cd server && npm install && cd ../"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinavagyan/mean-ts.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/martinavagyan/mean-ts/issues"
},
"engines": {
"node": "9.5.0"
},
"homepage": "https://github.com/martinavagyan/mean-ts#readme",
"dependencies": {
"@types/morgan": "^1.7.35"
}
}