-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
51
{
"name": "typescript-express-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node server.ts",
"build": "tsc --project ./",
"debug": "cross-env DEBUG=* nodemon",
"dev": "nodemon -L --exit-child | bunyan",
"test": "cross-env NODE_ENV=test TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true mocha -r ts-node/register 'src/**/*.spec.ts'",
"typeorm": "ts-node ./node_modules/typeorm/cli.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/bunyan": "^1.8.6",
"ajv": "^7.0.4",
"ajv-formats": "^1.5.1",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"bunyan": "^1.8.15",
"date-fns": "^2.17.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.14.1",
"mysql2": "^2.2.5",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.30"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.0",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.10",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.2.1",
"@types/node": "^8.0.29",
"@types/supertest": "^2.0.10",
"cross-env": "^7.0.3",
"mocha": "^8.3.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}