This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.53 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
55
56
57
58
{
"name": "koa-nextjs-react-typescript-boilerplate",
"version": "1.0.0",
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node dist/index.js",
"lint": "eslint '**/*.{js,ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier '**/*.{json,yaml,md}' --check",
"prettier:fix": "prettier '**/*.{json,yaml,md}' --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint",
"prettier"
]
},
"dependencies": {
"core-js": "^3.13.0",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-morgan": "^1.0.1",
"koa-mount": "^4.0.0",
"koa-proxies": "^0.12.1",
"koa-qs": "^3.0.0",
"koa-router": "^10.0.0",
"next": "^11.1.3",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@types/koa": "^2.13.2",
"@types/koa-morgan": "^1.0.4",
"@types/koa-mount": "^4.0.0",
"@types/koa-proxies": "^0.9.0",
"@types/koa-qs": "^2.0.0",
"@types/koa-router": "^7.4.2",
"@types/node": "^15.6.1",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@types/styled-components": "^5.1.9",
"babel-plugin-styled-components": "^1.12.0",
"eslint-config-yceffort": "^2.0.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}