forked from hauptrolle/chakra-templates
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "chakra-templates",
"version": "0.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hauptrolle/chakra-templates.git"
},
"author": "Achim Rolle <[email protected]>",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:ts": "tsc --noEmit",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint:ts",
"pre-push": "yarn lint:ts && yarn test:ci"
}
},
"dependencies": {
"@babel/core": "^7.15.5",
"@chakra-ui/icons": "^1.0.14",
"@chakra-ui/react": "^1.6.5",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.0.0",
"@hypertheme-editor/chakra-ui": "^0.1.2",
"@splitbee/web": "^0.2.4",
"directory-tree": "^2.2.5",
"framer-motion": "^4.1.17",
"next": "11.1.1",
"next-seo": "^4.17.0",
"nprogress": "^0.2.0",
"raw-loader": "^4.0.2",
"re-resizable": "^6.9.0",
"react": "17.0.1",
"react-code-blocks": "^0.0.8",
"react-dom": "17.0.1",
"react-icons": "^4.3.1",
"react-icons": "^4.1.0",
"react-slick": "^0.28.1",
"yarn": "^1.22.10"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@types/node": "^14.14.32",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.3",
"@types/react-slick": "^0.23.6",
"babel-jest": "^26.6.3",
"husky": "^4.3.8",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react-test-renderer": "^17.0.1",
"typescript": "^4.2.3"
}
}