-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.48 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
{
"name": "ts-node-starter",
"version": "20.12.7",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:benjamin-sln/ts-node-starter.git",
"author": "benjamin-sln <[email protected]>",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.production.js",
"dev": "cross-env NODE_ENV=development webpack --config webpack.development.js",
"run:dev": "cross-env NODE_ENV=development nodemon dist/index.js",
"test": "jest",
"test:coverage": "jest --coverage && coveralls < coverage/lcov.info",
"test:watch": "jest --watchAll",
"lint": "eslint --fix ."
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"coveralls": "^3.1.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.4.0",
"webpack-node-externals": "^2.5.2",
"webpack-shell-plugin-next": "^2.0.8"
},
"dependencies": {
"@types/express": "^4.17.9",
"cross-env": "^7.0.3",
"express": "^4.17.1"
}
}