-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.38 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
78
79
80
81
{
"name": "rohmanhm",
"version": "0.0.0",
"private": true,
"author": "Rohman Habib M <[email protected]>",
"license": "ISC",
"scripts": {
"dev": "next",
"start": "next start",
"export": "next export",
"build": "next build",
"build-analyze": "cross-env ANALYZE=true next build",
"check-formatting": "prettier --list-different 'src/**/*.{ts,tsx}'",
"commit": "git-cz",
"clean-build": "rm -rf out .next*",
"gen:chakra": "chakra-cli tokens ./configs/theme.ts",
"postinstall": "npm run gen:chakra"
},
"dependencies": {
"@chakra-ui/react": "^1.3.4",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/css": "^11.0.0",
"@emotion/react": "^11.1.5",
"@emotion/server": "^11.0.0",
"@emotion/styled": "^11.1.5",
"autoprefixer": "^10.2.5",
"framer-motion": "^3.10.0",
"ky": "^0.24.0",
"ky-universal": "^0.8.0",
"next": "^10.0.8",
"notion-client": "^4.9.10",
"notion-types": "^4.8.2",
"notion-utils": "^4.8.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0",
"react-notion-x": "^4.9.9",
"react-query": "^3.12.0",
"slugify": "^1.4.7"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@chakra-ui/cli": "^1.2.1",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@next/bundle-analyzer": "^10.0.8",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"commitizen": "^4.2.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-standard": "^5.0.0",
"git-cz": "^4.7.6",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"next-compose-plugins": "^2.2.1",
"next-pwa": "^5.0.6",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"typescript": "^4.2.3",
"webpack": "4.46.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}