-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 884 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
{
"name": "ProfileKeeper-be",
"version": "1.0.0",
"main": "./src/index.js",
"repository": "https://github.com/CatMonster/ProfileKeeper-be",
"author": "St1nkers team",
"license": "MIT",
"scripts": {
"start": "nodemon ./src/index.js --exec babel-node --presets babel-preset-env",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src --ext js"
},
"dependencies": {
"husky": "^7.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn run pretty-quick --staged && yarn lint"
}
}
}