-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "node-webpack-starter",
"version": "0.0.1",
"description": "Starting point for a node express project using webpack",
"main": "dist/index.js",
"author": "Clayton Marinho e Silva <claytonmarinho@gmail.com>",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"helmet": "^4.6.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.2.0",
"eslint-config-node": "^4.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"husky": "4",
"jest": "^27.3.1",
"lint-staged": "^12.0.1",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"supertest": "^6.1.6",
"terser-webpack-plugin": "^5.2.5",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0"
},
"scripts": {
"build": "webpack --config ./webpack.prod.js",
"start": "webpack --config ./webpack.dev.js --watch & NODE_ENV=development nodemon --inspect ./build/service.js",
"lint": "eslint \"./src/**/*\" --quiet --ext .js",
"lint:fix": "eslint \"./src/**/*\" --quiet --ext .js",
"test": "jest",
"test:watch": "jest --watch"
},
"engines": {
"node": "^14.17.0 || >=16.0.0"
},
"keywords": [
"express",
"node",
"babel",
"webpack",
"jest"
]
}