-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "nodmin",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"@types/node": "^14.0.5",
"crypto": "^1.0.1",
"ts-node": "3.3.0",
"typescript": "3.3.3333"
},
"dependencies": {
"@types/jsonwebtoken": "^8.5.0",
"bcrypt": "^4.0.1",
"body-parser": "^1.18.1",
"dotenv": "^8.2.0",
"express": "^4.15.4",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"node": "^14.3.0",
"nodemon": "^2.0.4",
"pg": "^7.3.0",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.25"
},
"scripts": {
"start": "ts-node src/index.ts",
"watch": "nodemon src/index.ts",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src",
"client/src",
"client/dist"
],
"exec": "npm start",
"ext": "*"
}
}