-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "maze-escape",
"version": "1.0.0",
"description": "Maze Escape - Navigate the rat to food!",
"main": "index.html",
"scripts": {
"lint": "eslint --fix --ext .js src/",
"format": "prettier --write \"src/**/*.js\"",
"start": "live-server --port=3000",
"postinstall": "npx husky install"
},
"keywords": [
"maze-escape",
"p5.js",
"html",
"css",
"javascript"
],
"author": "Ankit Matth",
"license": "ISC",
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.8",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-p5js": "^1.0.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"live-server": "^1.2.2",
"prettier": "^3.2.4"
},
"lint-staged": {
"src/*.js": [
"npm run format",
"npm run lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}