-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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": "nodejs-es6-template",
"version": "1.0.0",
"description": "Node.js es6 starter template",
"main": "src/index.js",
"author": {
"name": "gcoderbh",
"url": "https://github.com/gcoderbh/nodejs-es6-starter-template.git"
},
"scripts": {
"build": "rimraf dist/ && babel src --out-dir dist --copy-files",
"start": "npm run build && node dist/index.js",
"test": "jest --coverage "
},
"keywords": [
"nodejs",
"javascript",
"es6",
"nodemon",
"babel",
"jest"
],
"license": "MIT",
"jest": {
"reporters": [
"default",
["jest-html-reporters", {
"publicPath": "./test-report",
"filename": "index.html",
"expand": true
}]
]
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/plugin-transform-regenerator": "^7.18.6",
"@babel/preset-env": "^7.18.10",
"eslint": "^8.21.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"jest-html-reporters": "^3.0.10",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"supertest": "^6.2.4"
},
"dependencies": {
"express": "^4.18.1"
}
}