-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (57 loc) · 1.58 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
{
"name": "rest-api-boilerplate",
"version": "1.0.0",
"description": "RESTful API Boilerplate and build process to quickly get projects going.",
"author": "Mathias Brouilly",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bymathias/rest-api-boilerplate"
},
"directories": {
"test": "test"
},
"scripts": {
"dev:watch": "webpack --watch --progress",
"dev:start": "nodemon -r dotenv/config dist",
"dev": "run-p dev:*",
"build": "webpack --progress",
"test:watch": "jest --watchAll",
"test": "jest",
"start": "node -r dotenv/config dist"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/register": "^7.14.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"eslint-webpack-plugin": "^3.0.1",
"jest": "^27.0.6",
"morgan": "^1.10.0",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"supertest": "^6.1.4",
"terser-webpack-plugin": "^5.1.4",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"mongoose": "^5.13.5",
"xss-clean": "^0.1.1"
}
}