-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.44 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
{
"name": "blaketarter.com-2023",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"prebuild": "npm run clear",
"build": "next build",
"prestart": "npm run build",
"start": "npx serve out",
"clear": "rm -rf node_modules/.cache",
"test:unit": "jest --watch",
"test:unit:ci": "jest --ci",
"test:lint": "next lint",
"test:lint:fix": "next lint --fix",
"test:types": "tsc --pretty --noEmit",
"test:serve": "start-server-and-test test:serve:start http://localhost:5000 test:serve:verify",
"test:serve:start": "npm run start -- -l 5000",
"test:serve:verify": "echo 'ok'",
"test:ci": "CI=true run-s test:lint test:types test:unit:ci test:serve"
},
"dependencies": {
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"classnames": "^2.5.1",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"next": "14.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.3.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.11",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all2": "^6.1.1",
"prettier": "^3.2.4",
"start-server-and-test": "^2.0.0"
}
}