-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 852 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
{
"name": "manitalks",
"version": "1.0.0",
"main": "app.js",
"license": "MIT",
"scripts": {
"start:dev": "nodemon",
"start": "npm run build && node build/app.js",
"build": "rimraf ./build && tsc"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.9",
"@types/multer": "^1.4.5",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"express": "^4.17.1",
"http-status-codes": "^2.1.4",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"node-html-parser": "^2.0.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0-alpha.6",
"typedi": "^0.8.0"
}
}