-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
54 lines (54 loc) · 1.82 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
51
52
53
54
{
"name": "my-next.js-starter",
"version": "1.0.0",
"scripts": {
"dev": "CLIENT_ENV=development next dev",
"build": "next build",
"start": "next start",
"---------- Linting ----------------------------------------------------": "",
"eslint": "next lint",
"lint": "npm-run-all --parallel eslint ts",
"prettier": "npx prettier --write \"./**/*.{ts,tsx,js,jsx,json,md}\"",
"ts": "tsc --noEmit",
"ts:watch": "npm run ts -- --watch",
"ts:prune": "npx ts-prune",
"---------- Testing ----------------------------------------------------": "",
"test": "jest",
"test:watch": "jest --watch",
"---------- Analyze ----------------------------------------------------": "",
"analyze": "ANALYZE=true next build",
"---------- helper commands --------------------------------------------": "",
"serve": "http-server ./out",
"generate": "node ./tools/generate.js",
"up": "yarn upgrade-interactive --latest",
"-----------------------------------------------------------------------": ""
},
"dependencies": {
"axios": "0.27.2",
"clsx": "1.2.1",
"next": "12.2.2",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@next/bundle-analyzer": "12.2.2",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.3.0",
"@testing-library/user-event": "14.3.0",
"@types/node": "18.0.6",
"@types/react": "18.0.15",
"duplicate-package-checker-webpack-plugin": "3.0.0",
"eslint": "8.20.0",
"eslint-config-next": "12.2.2",
"eslint-config-prettier": "8.5.0",
"generate-template-files": "3.2.1",
"http-server": "14.1.1",
"jest": "28.1.3",
"next-compose-plugins": "2.2.1",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"typescript": "4.7.4"
},
"license": "MIT"
}