-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "get-five",
"version": "1.2.0",
"private": true,
"scripts": {
"prebuild": "npm run generate-words",
"build": "next build",
"dev": "next dev",
"generate-words": "node ./scripts/generate-word-lists/index.mjs",
"lint": "sort-package-json && eslint . --ext .js,.ts,.tsx --fix",
"prepare": "husky install",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"next": "^12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/node": "17.0.10",
"@types/react": "17.0.38",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"autoprefixer": "^10.4.2",
"eslint": "^7.32.0",
"eslint-config-next": "12.0.8",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"postcss": "^8.4.5",
"sort-package-json": "^1.54.0",
"tailwindcss": "^3.0.15",
"typescript": "4.5.4"
}
}