-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.5 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": "typescript-node-boilerplate",
"version": "1.0.0",
"engines": {
"node": ">=14.x"
},
"main": "./src/server.ts",
"repository": "https://github.com/JesusDR01/ESM-node-typescript-boilerplate",
"scripts": {
"dev": "TS_NODE_PROJECT=\"src/tsconfig.json\" nodemon -e ts --exec ts-node -r tsconfig-paths/register src/server.ts",
"build": "yarn lint && TS_NODE_PROJECT=\"tsconfig-webpack-config.json\" webpack ",
"lint": "eslint --ext .ts src/",
"start": "node dist/server.js",
"test": "jest"
},
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^29.2.3",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^18.11.9",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.31.8",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"node-polyfill-webpack-plugin": "^2.0.1",
"nodemon": "^2.0.7",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.3.2",
"webpack": "^5.36.2",
"webpack-cli": "^5.0.0",
"webpack-node-externals": "^3.0.0"
}
}