-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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
47
48
49
50
{
"name": "lineup",
"version": "0.1.0",
"private": true,
"engines": {
"node": "^18"
},
"scripts": {
"build": "next build",
"check-types": "tsc --noemit",
"clean": "rimraf .next .swc coverage node_modules next-env.d.ts tsconfig.tsbuildinfo",
"dev": "next dev",
"eslint": "next lint",
"lint": "yarn eslint && yarn check-types",
"start": "next start",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"lodash": "4.17.21",
"next": "12.3.1",
"next-connect": "1.0.0-next.3",
"pino": "8.6.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "1.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/lodash": "4.14.186",
"@types/node": "18.8.5",
"@types/react": "18.0.21",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.1.2",
"jest-environment-jsdom": "29.1.2",
"msw": "0.47.4",
"node-mocks-http": "1.11.0",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"typescript": "4.8.4",
"whatwg-fetch": "3.6.2"
}
}