-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 885 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
{
"name": "doublephobia",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc"
},
"main": "pages/index.tsx",
"dependencies": {
"@types/node": "16.x",
"@types/react": "17.x",
"@types/react-dom": "17.x",
"immer": "^9.0.12",
"nanoid": "^3.2.0",
"next": "12.x",
"react": "17.x",
"react-dom": "17.x",
"typescript": "4.x",
"use-debounced-effect-hook": "^1.1.62"
},
"license": "ISC",
"keywords": [],
"description": "",
"devDependencies": {
"eslint": "8.7.0",
"eslint-config-next": "12.0.8",
"prettier": "^2.5.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
}
}