-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "pompmast-server",
"version": "0.0.1",
"description": "Pompmast API Express erver",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc",
"start": "node .",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"dev:server:start": "npm-run-all build start",
"dev:server": "nodemon --watch src -e ts,ejs --exec npm run dev:server:start",
"dev:frontend": "cd frontend && ng serve --proxy-config proxy.conf.json",
"dev": "concurrently --names='BACKEND,FRONTEND' -c='bgGreen.bold,bgBlue.bold' npm:dev:server npm:dev:frontend",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackorobot/pompmast-server.git"
},
"author": "Jesse Hoogervorst",
"license": "MIT",
"bugs": {
"url": "https://github.com/jackorobot/pompmast-server/issues"
},
"homepage": "https://github.com/jackorobot/pompmast-server#readme",
"devDependencies": {
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.1",
"@types/mongoose": "^5.3.12",
"@types/node": "^10.12.21",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"concurrently": "^4.1.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"tslint": "^5.12.1",
"typescript": "^3.3.1"
},
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"envalid": "^4.2.1",
"express": "^4.16.4",
"mongoose": "^5.4.9"
}
}