-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.5 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "nextjs-mobx-keystone",
"version": "1.0.0",
"repository": "https//github.com/EvgeniyKumachev/nextjs-mobx-keystone-template.git",
"author": "Evgeniy Kumachev <evgeniykumachev@protonmail.ch>",
"license": "ISC",
"scripts": {
"prepare": "is-ci || npx simple-git-hooks",
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "npx eslint --cache --ext .ts,.tsx \"{src,types}/**/*\" --fix",
"lint:icons": "npx eslint --cache --ext .ts,.tsx \"src/components/icons/**/*\" --fix",
"generate-icons": "npx rimraf src/components/icons && npx svgr --config-file ./config/svgr/config.js --typescript --ignore-existing -d src/components/icons assets/icons && npm run lint:icons"
},
"simple-git-hooks": {
"pre-commit": "npm run generate-icons",
"post-merge": "npm run generate-icons"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@emotion/babel-plugin": "^11.2.0",
"@emotion/css": "^11.1.3",
"@emotion/eslint-plugin": "^11.2.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"next": "^10.1.3",
"next-compose-plugins": "^2.2.1",
"next-seo": "^4.23.0",
"nookies": "^2.5.2",
"path-to-regexp": "^6.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@next/eslint-plugin-next": "^10.1.3",
"@svgr/cli": "^5.5.0",
"@types/cookie": "^0.4.0",
"@types/fs-extra": "^9.0.8",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/signale": "^1.4.1",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"cross-env": "^7.0.3",
"csstype": "^3.0.7",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"fs-extra": "^9.1.0",
"is-ci": "^3.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.0",
"signale": "^1.4.0",
"simple-git-hooks": "^2.3.1",
"ts-toolbelt": "^9.6.0",
"typescript": "^4.2.3"
},
"keywords": [],
"description": ""
}