-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
59 lines (59 loc) · 1.86 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
52
53
54
55
56
57
58
59
{
"name": "express-typescript-starter",
"version": "1.1.8",
"author": "rjmacarthy",
"private": false,
"scripts": {
"dev": "npm run build && concurrently --kill-others \"tsc -w -p src\" \"nodemon dist/index.js -e ts\"",
"debug": "npm run build && concurrently --kill-others \"tsc -w -p src\" \"nodemon --inspect dist/index.js -e ts\"",
"test:watch": "mocha -w ./spec/**/*.spec.ts --watch-extensions ts",
"test": "mocha --exit ./spec/**/*.spec.ts",
"build": "tsc -p src",
"start": "node dist/index.js",
"build:docker": "docker build -t rjmacarthy/express-typescript-starter .",
"docker:compose": "docker-compose up",
"format": "prettier --write 'src/**/*ts'",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:test": "tslint -c tslint.json 'spec/**/*.ts'",
"format:test": "prettier --write 'spec/**/*ts'"
},
"dependencies": {
"body-parser": "^1.20.2",
"cookie-parser": "~1.4.6",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fresh": "^0.5.2",
"glob": "^10.3.1",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"mongoose": "^7.3.1",
"morgan": "^1.10.0",
"negotiator": "^0.6.3",
"pug": "^3.0.2",
"serve-favicon": "^2.5.0",
"socket.io": "^4.7.1",
"tslint-config-prettier": "^1.18.0"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.195",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.0",
"@types/sinon": "^10.0.15",
"@types/socket.io": "^3.0.1",
"chai": "^4.3.7",
"concurrently": "^8.2.0",
"mocha": "^10.2.0",
"node-mocks-http": "^1.12.2",
"nodemon": "^2.0.22",
"prettier": "^3.0.0",
"sinon": "^15.2.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.1.6"
}
}