-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 2.06 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": "ts-express-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for express and typescript",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"lint": "node_modules/.bin/eslint src/**/*.ts --fix --quiet",
"tsc": "node_modules/.bin/tsc",
"build": "rimraf dist/* && node_modules/.bin/eslint src/**/*.ts --fix --quiet && node_modules/.bin/tsc",
"start": "node dist/index.js",
"start-dev": "node_modules/.bin/tsc && node dist/index.js",
"migrate": "node_modules/.bin/typeorm migration:run -d dist/datasources/DefaultDataSource.js",
"unmigrate": "node_modules/.bin/typeorm migration:revert -d dist/datasources/DefaultDataSource.js",
"migrate-dev": "node_modules/.bin/tsc && node_modules/.bin/typeorm migration:run -d dist/datasources/DefaultDataSource.js",
"unmigrate-dev": "node_modules/.bin/tsc && node_modules/.bin/typeorm migration:revert -d dist/datasources/DefaultDataSource.js",
"test": "jest --detectOpenHandles"
},
"author": "Bruno Salzano",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/d4rkstar/ts-express-boilerplate.git"
},
"dependencies": {
"async": "^3.2.5",
"axios": "^1.6.5",
"date-fns": "^3.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-winston": "^4.2.0",
"helmet": "^7.1.0",
"ini": "^4.1.1",
"lodash": "^4.17.21",
"pg": "^8.11.3",
"process": "^0.11.10",
"typeorm": "^0.3.19",
"wait-for-expect": "^3.0.2",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.17.41",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.6",
"@types/sinon": "^17.0.2",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"sinon": "^17.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}