-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
43 lines (43 loc) · 998 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
38
39
40
41
42
43
{
"name": "koodiklinikka",
"version": "2.0.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prod": "NODE_ENV=production next build",
"prettify": "prettier --write ."
},
"dependencies": {
"lodash.shuffle": "4.2.0",
"next": "15.0.3",
"react": "18.3.1",
"react-confetti": "6.1.0",
"react-dom": "^18"
},
"devDependencies": {
"@types/lodash.shuffle": "4.2.9",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"eslint": "9.15.0",
"eslint-config-next": "15.0.3",
"postcss": "8.4.49",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"tailwindcss": "3.4.15",
"typescript": "5.6.3"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": false,
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}