-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "express-typescript-app",
"version": "1.0.0",
"license": "MIT",
"main": "./dist/src/server.js",
"exports": {
".": "./dist/src/server.js"
},
"typesVersions": {
"*": {
"index.d.ts": [
"dist/src/server.d.ts"
]
}
},
"type": "module",
"scripts": {
"build": "npx tsc",
"test": "npm run build && npx mocha dist/test/**/*.js",
"start": "npm run build && ts-node dist/src/server.js",
"dev": "npx nodemon ./ts/src/server.ts",
"copy-env:local": "cp -n .env.local .env || true"
},
"dependencies": {
"debug": "~4.3.4",
"dotenv": "^16.0.3",
"express": "~4.18.2",
"http-errors": "~2.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@babel/preset-env": "^7.20.2",
"@types/http-errors": "^2.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.13.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}