-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.62 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
53
54
55
56
57
58
59
60
{
"name": "nodejs-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node ./src/index.js",
"debug": "nodemon --inspect --exec babel-node ./src/index.js",
"commit": "git-cz",
"release": "standard-version",
"build": "babel src -d build",
"lint": "eslint src",
"docker:build": "docker build -t nodeapp .",
"docker:run": "docker run --unless-stopped -d nodeapp",
"test": "jest",
"coverage": "jest --coverage"
},
"keywords": [],
"author": "",
"license": "MIT",
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"cz-conventional-changelog-emoji": "^0.1.0",
"eslint": "^5.3.0",
"eslint-config-prettier": "^3.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"git-cz": "^1.8.0",
"jest": "^23.6.0",
"nodemon": "^1.18.9",
"prettier": "^1.16.1",
"regenerator-runtime": "^0.13.1",
"standard-version": "^4.4.0"
},
"dependencies": {
"winston": "^3.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog-emoji"
}
}
}