-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.13 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
{
"name": "bamboo",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": " APP_VERSION=$(date +'%Y-%m-%d %H:%M:%S') next dev",
"build": "APP_VERSION=$(date +'%Y-%m-%d %H:%M:%S') cross-env NODE_ENV=production next build",
"build:test": "APP_VERSION=$(date +'%Y-%m-%d %H:%M:%S') cross-env NODE_ENV=test next build",
"start": "next start",
"lint": "next lint",
"types-check": "tsc --pretty --noEmit",
"lint:prettier": "prettier --check \"src/**/*+(js|jsx|ts|tsx|scss)\"",
"lint:script": "eslint -c .eslintrc.json \"./src/**/*.{js,ts,tsx}\"",
"lint:style": "stylelint src/**/*.{css,scss}",
"lintfix": "prettier --write --list-different \"src/**/*+(js|jsx|ts|tsx|scss)\" && npm run lint:script -- --fix && npm run lint:style -- --fix"
},
"dependencies": {
"@next/font": "13.1.6",
"@tanstack/react-query": "^4.24.6",
"@tanstack/react-query-devtools": "^4.24.6",
"@types/node": "18.13.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"antd": "^5.6.1",
"axios": "^1.3.3",
"chart.js": "^4.3.0",
"chartjs-plugin-datalabels": "^2.2.0",
"classnames": "^2.3.2",
"eslint": "^8.34.0",
"eslint-config-next": "^13.4.7",
"install": "^0.13.0",
"lodash": "^4.17.21",
"next": "^13.4.7",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-d3-cloud": "^1.0.6",
"react-dom": "^18.2.0",
"typescript": "4.9.5",
"use-count-up": "^3.0.1",
"yaml": "^2.3.1"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@types/dompurify": "^3.0.2",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"sass": "^1.58.2",
"stylelint": "^15.1.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^7.0.1",
"tailwindcss": "^3.2.6"
},
"lint-staged": {
"*.{js,ts,tsx,css,scss}": [
"yarn lint"
]
},
"engines": {
"node": ">=14.19.1"
}
}