-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.39 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
47
48
49
50
51
52
53
54
55
56
{
"name": "paint-by-number",
"version": "1.0.0",
"private": true,
"description": "paint-by-number",
"author": "UnsignedArduino",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"prepare": "husky install",
"format": "npx prettier --write .",
"lint": "npx eslint \"./src/**\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@popperjs/core": "^2.11.5",
"bootstrap": "^5.2.0",
"gatsby": "^4.20.0",
"image-q": "^4.0.0",
"p5": "^1.4.2",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@types/node": "^17.0.45",
"@types/p5": "^1.4.2",
"@types/react": "^18.0.16",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.1",
"husky": "^8.0.1",
"import-sort-style-module": "^6.0.0",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"prettier-plugin-import-sort": "^0.0.7",
"typescript": "^4.7.4"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"lint-staged": {
"**/*": "prettier --write . --ignore-unknown"
}
}