generated from william-glasse2/node-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 979 Bytes
/
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
{
"name": "jumpstart",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "snyk test && npm run test:unit",
"test:unit": "jest",
"test:unit:watch": "npm run test:unit -- --watch",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@types/eslint": "^7.28.2",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/prettier": "2.4.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "2.4.1",
"snyk": "^1.840.0",
"typesync": "^0.8.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"package.json": [
"typesync --silent"
]
}
}