-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.38 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.38 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "node-seed",
"version": "1.0.0",
"description": "",
"license": "ISC",
"scripts": {
"build": "neutrino build --use neutrino-preset-node",
"check:node": "check-node-version --package",
"ci": "npm run lint:js && npm run test",
"clean": "rm -rf dist",
"precommit": "lint-staged && npm run lint",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"format:js": "prettier --single-quote --trailing-comma all --no-semi --print-width 180 --write \"{src,test}/**/*.js\"",
"postinstall": "npm run check:node",
"lint": "npm run lint:js",
"lint:js": "eslint ./src ./test --ext=js",
"lint:js:without:prettier": "npm run lint:js -- --rule 'prettier/prettier: 0'",
"lint:watch": "nodemon --watch src --exec \"npm run lint:without:prettier\"",
"lint:without:prettier": "npm run lint:js:without:prettier",
"start": "neutrino start --use neutrino-preset-node",
"start:built": "forever build/index.js",
"start:debug": "npm run start -- --debug",
"start:docker": "docker build -t lead-finder-server . && docker run --rm -it lead-finder-server",
"test": "neutrino test --use neutrino-preset-node neutrino-preset-mocha",
"test:watch": "nodemon -w src -w test --exec 'npm run test'"
},
"dependencies": {
"babel-plugin-root-import": "^5.1.0",
"lodash": "^4.2.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"chai": "^4.0.1",
"chai-moment": "^0.1.0",
"check-node-version": "^2.1.0",
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-prettier": "^2.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-prettier": "^2.0.1",
"forever": "^0.15.3",
"husky": "^1.0.1",
"lint-staged": "^7.3.0",
"neutrino": "^5.9.0",
"neutrino-preset-mocha": "^5.9.0",
"neutrino-preset-node": "^5.9.1",
"nodemon": "^1.8.1",
"prettier": "^1.2.2",
"sort-package-json": "^1.15.0"
},
"engines": {
"node": ">= 10 < 11"
},
"engine-strict": true,
"lint-staged": {
"{src,test}/**/*.js": [
"yarn format:js --",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"neutrino": {
"options": {
"mocha": {
"recursive": true
}
}
}
}