generated from chiffre-io/template-website
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 2.54 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@47ng/cloak-ui",
"version": "0.0.0-semantically-released",
"description": "Companion web UI for @47ng/cloak",
"main": "dist/index.js",
"license": "MIT",
"private": true,
"author": {
"name": "François Best",
"email": "[email protected]",
"url": "https://francoisbest.com"
},
"repository": {
"type": "git",
"url": "https://github.com/47ng/cloak-ui"
},
"scripts": {
"dev": "next",
"build": "run-s build:*",
"build:next": "next build",
"build:export": "next export",
"analyze": "ANALYZE=true next build",
"ci": "run-s build",
"prepare": "husky install"
},
"dependencies": {
"@47ng/chakra-next": "^3.0.0-beta.5",
"@47ng/cloak": "^1.1.0",
"@47ng/codec": "^1.1.0",
"@chakra-ui/react": "^2.2.1",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"dayjs": "^1.11.3",
"framer-motion": "^6.4.2",
"next": "^12.2.0",
"next-seo": "^5.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-table": "^7.8.0",
"vegemite": "^1.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.3",
"@mdx-js/loader": "^2.1.2",
"@next/bundle-analyzer": "^12.2.0",
"@next/mdx": "^12.2.0",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@types/react-table": "^7.7.12",
"@types/webpack": "^5.28.0",
"@zeit/next-source-maps": "^0.0.3",
"commitlint": "^17.0.3",
"dotenv": "^16.0.1",
"husky": "8.x",
"jest": "^28.1.2",
"next-compose-plugins": "^2.2.1",
"next-transpile-modules": "^9.0.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"webpack": "^5"
},
"jest": {
"verbose": true,
"preset": "ts-jest/presets/js-with-ts",
"testEnvironment": "jsdom"
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"clean",
"doc",
"feat",
"fix",
"perf",
"ref",
"revert",
"style",
"test"
]
],
"subject-case": [
0,
"always",
"sentence-case"
],
"body-leading-blank": [
2,
"always",
true
]
}
}
}