-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 895 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
{
"name": "codebreaker-next-ts",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"npx tailwindcss -i ./styles/input.css -o ./styles/output.css --watch\"",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"concurrently": "^7.1.0",
"next": "12.1.4",
"prettier": "^2.6.1",
"react": "18.0.0",
"react-dom": "18.0.0"
},
"devDependencies": {
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"cypress": "^9.5.3",
"eslint": "8.12.0",
"eslint-config-next": "12.1.4",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3"
}
}