-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.6 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.6 KB
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
{
"name": "template",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"babel:build": "rm -r dist/ & babel . --config-file ./.babelrc -d dist",
"babel:start": "node dist/app.js",
"babel:prod": "yarn run babel:build && yarn run babel:start",
"babel:dev": "babel-node --inspect=0.0.0.0:9229 app.js",
"nodemon:dev": "nodemon --inspect=0.0.0.0:9229 app.js --exec babel-node",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"test:dev": "NODE_ENV=dev babel-node --inspect=0.0.0.0:8228 node_modules/.bin/jest --runInBand --detectOpenHandles",
"test:coverage": "NODE_ENV=dev jest --coverage",
"test:watch": "NODE_ENV=dev jest --watch",
"snyk:run": "snyk test",
"snyk:auth": "snyk auth"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dzidzileyla/node-template.git"
},
"author": "dzidzi",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dzidzileyla/node-template/issues"
},
"homepage": "https://github.com/Dzidzileyla/node-template#readme",
"dependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/node": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"babel-jest": "^27.0.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"lodash": "^4.17.20",
"mongoose": "^6.0.6",
"supertest": "^6.1.3"
},
"devDependencies": {
"eslint": "^8.4.1",
"eslint-config-google": "^0.14.0",
"jest": "^27.0.3",
"nodemon": "^2.0.7",
"synk": "^0.0.2"
}
}