-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 869 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
{
"name": "express-decorator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prettier": "prettier --write '**/**/*.{js,jsx,ts,tsx}'",
"build": "rimraf build && tsc -p tsconfig.json",
"start": "node -r ./bootstrap.js ./build/server.js",
"dev": "nodemon --exec ./node_modules/.bin/ts-node -r tsconfig-paths/register -- ./src/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"reflect-metadata": "^0.1.13",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/node": "^14.14.17",
"git-hooks-plus": "^1.0.1",
"nodemon": "^2.0.6",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0"
}
}