-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·44 lines (44 loc) · 1.23 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
{
"name": "expressjs-boilerplate",
"version": "1.0.0",
"description": "Express js application boilerplate",
"main": "dist/server.js",
"scripts": {
"prestart": "npm run build",
"start": "node dist/server.js",
"build": "tsc --build && cp -r ./src/migrations/queries ./dist/migrations",
"build:clean": "tsc --build --clean && npm run build",
"build:test": "tsc --build ./tests/tsconfig.build.json",
"pretest": "npm run build:clean && npm run build:test",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elszczepano/expressjs-boilerplate.git"
},
"keywords": [],
"author": "Dominik Szczepaniak",
"license": "MIT",
"bugs": {
"url": "https://github.com/elszczepano/expressjs-boilerplate/issues"
},
"dependencies": {
"body-parser": "1.20.0",
"dotenv": "16.0.0",
"express": "4.17.3",
"mysql": "2.18.1"
},
"devDependencies": {
"@types/body-parser": "1.19.2",
"@types/express": "4.17.17",
"@types/node": "18.11.9",
"@types/mysql": "2.15.21",
"@types/sinon": "10.0.15",
"ava": "5.3.0",
"node-mocks-http": "1.12.2",
"sinon": "15.1.2",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "5.1.3"
}
}