-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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": "guildedscrubber",
"version": "2.2.1",
"private": true,
"scripts": {
"dev": "npm run create-index && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix ./",
"create-index": "create-index -r ./src/classes ./src/services ./src/templates ./src/atoms ./src/components ./src/molecules --extensions ts tsx --outputFile index.ts",
"prepare": "husky"
},
"dependencies": {
"@internationalized/date": "^3.5.4",
"@nextui-org/react": "^2.4.1",
"@react-aria/i18n": "^3.11.1",
"csstype": "^3.1.3",
"framer-motion": "^11.2.10",
"http-method-enum": "^1.0.0",
"js-cookie": "^3.0.5",
"make-fetch-happen": "^13.0.1",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@types/make-fetch-happen": "^10.0.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.19",
"create-index": "^2.6.0",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"postcss": "^8.4.38",
"prettier": "3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5"
}
}