-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 905 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
31
32
33
34
35
36
37
{
"name": "node-tiers",
"version": "1.0.0",
"license": "MIT",
"author": "Uillian Ludwig",
"description": "",
"scripts": {
"start": "node dist/app.js",
"build": "tsc && gulp build",
"buildAndStart": "tsc && gulp build && node dist/app.js",
"dev": "concurrently \"tsc -w\" \"nodemon dist/server/app.js\"",
"watch": "tsc -w",
"gulp": "gulp build"
},
"private": true,
"dependencies": {
"body-parser": "^1.17.2",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"ffi": "^2.2.0",
"mathjs": "^3.16.2",
"mongoose": "^4.10.8",
"morgan": "^1.8.2",
"node-fetch": "^1.7.2",
"response-time": "^2.3.2",
"underscore": "^1.8.3"
},
"devDependencies": {
"@types/node": "~6.0.60",
"concurrently": "^3.3.0",
"gulp": "^3.9.1",
"nodemon": "1.11.0",
"ts-node": "~3.0.4",
"tslint": "~5.3.2",
"typescript": "~2.4.1"
}
}