-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.7 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
{
"name": "nutotei",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start:ci": "INSECURE_AUTH=true yarn run start",
"lint": "next lint",
"typecheck": "tsc --pretty --noEmit",
"format": "prettier --write .",
"test": "jest",
"test-all": "yarn lint && yarn typecheck && yarn test",
"prepare": "husky install"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.11.1",
"@contentful/rich-text-types": "^15.11.1",
"@headlessui/react": "^1.5.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"algoliasearch": "^4.12.1",
"echarts": "^5.3.0",
"echarts-for-react": "^3.0.2",
"graphql": "^16.3.0",
"graphql-request": "^4.0.0",
"next": "12.1.0",
"next-seo": "^5.1.0",
"ramda": "^0.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-instantsearch-dom": "^6.22.0",
"swr": "^1.2.1"
},
"devDependencies": {
"@types/echarts": "^4.9.13",
"@types/node": "^17.0.18",
"@types/ramda": "^0.27.64",
"@types/react": "^17.0.39",
"@types/react-instantsearch-dom": "^6.12.2",
"autoprefixer": "10.4.2",
"eslint": "8.9.0",
"eslint-config-next": "12.1.0",
"husky": ">=7.0.4",
"lint-staged": ">=12.3.4",
"postcss": "8.4.6",
"prettier": "^2.5.1",
"stylelint": "^14.5.1",
"stylelint-config-recommended": "^7.0.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.5"
},
"license": "MIT",
"lint-staged": {
"*.css": "stylelint --fix",
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,json,md}": "prettier --write"
}
}