-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "project-63",
"version": "0.1.0",
"repository": "https://github.com/robinzachmann/project-63.git",
"license": "MIT",
"author": "Robin Zachmann",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"format": "yarn lint:prettier --write",
"lint": "run-p lint:ts lint:eslint lint:prettier",
"lint:eslint": "eslint --ext=ts --ext=tsx --ext=js --ext=jsx .",
"lint:prettier": "prettier --check \"**/*.{ts,tsx,js,jsx,json,yaml,scss}\"",
"lint:ts": "tsc --pretty --noEmit --incremental",
"prepare": "husky install"
},
"dependencies": {
"@hookstate/core": "^3.0.7",
"@hookstate/persistence": "^3.0.0",
"@types/react-modal": "^3.12.0",
"framer-motion": "^4.1.11",
"next": "^10.1.3",
"node-sass": "^5.0.0",
"react": "^17.0.2",
"react-dice-roll": "^1.1.1",
"react-dom": "^17.0.2",
"react-dom-confetti": "^0.2.0",
"react-modal": "^3.14.3"
},
"devDependencies": {
"@types/node": "^14.14.41",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier-plugin-packagejson": "^2.2.10",
"typescript": "^4.2.4"
}
}