-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2 KB
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
52
53
54
55
56
57
58
59
60
61
{
"name": "nodejs-assessment",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "npm run webpack:dev",
"build:live": "nodemon --exec ts-node -- ./bin/index",
"webpack:dev": "webpack -d --watch --colors --display-error-details",
"webpack:min": "webpack -p --colors --display-error-details",
"debug": "node --inspect -r ts-node/register ./bin/dev",
"test": "mocha --timeout 10000 -r ts-node/register test/**/*.spec.ts",
"lint": "tslint --project ./tsconfig.json --config ./tslint.json 'src/**/*.ts' -t verbose --force"
},
"author": "Alberto Naperi Jr.",
"license": "ISC",
"dependencies": {
"class-validator": "0.9.1",
"compression": "1.7.3",
"cors": "2.8.4",
"dotenv": "6.0.0",
"express": "4.16.3",
"fast-safe-stringify": "2.0.6",
"helmet": "3.13.0",
"jsonwebtoken": "8.3.0",
"lodash": "4.17.10",
"moment": "2.22.2",
"moment-timezone": "0.5.21",
"mysql": "2.16.0",
"pino": "5.4.0",
"pino-pretty": "2.0.1",
"reflect-metadata": "0.1.12",
"routing-controllers": "0.7.7",
"serve-favicon": "2.5.0",
"typeorm": "0.2.7"
},
"devDependencies": {
"@types/chai": "4.1.4",
"@types/cors": "2.8.4",
"@types/express": "4.16.0",
"@types/helmet": "0.0.40",
"@types/lodash": "4.14.116",
"@types/mocha": "5.2.5",
"@types/node": "10.9.4",
"@types/pino": "5.20.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"chai": "4.1.2",
"mocha": "5.2.0",
"nodemon": "1.18.4",
"nodemon-webpack-plugin": "3.0.1",
"ts-lint": "4.5.1",
"ts-loader": "4.5.0",
"ts-node": "7.0.1",
"typescript": "3.0.3",
"webpack": "4.17.1",
"webpack-cli": "3.1.0",
"webpack-node-externals": "1.7.2"
}
}