forked from nefilmjp/nms-interceptor-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.07 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
{
"name": "nms-interceptor-catalog",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "run-p next:dev tsm:watch",
"next:dev": "next dev",
"build": "run-s next:build redirect",
"next:build": "next build",
"start": "cd out && serve",
"eslint": "eslint --cache ./**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx}",
"eslint:fix": "eslint --cache --fix ./**/*.{js,mjs,cjs,jsx,ts,mts,cts,ts}",
"stylelint": "stylelint ./**/*.{css,scss}",
"stylelint:fix": "stylelint --fix ./**/*.{css,scss}",
"prettier": "prettier --write ./**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,css,scss}",
"next:lint": "next lint",
"lint": "run-s next:lint eslint:fix stylelint:fix prettier type-check",
"type-check": "tsc --noEmit -p tsconfig.json",
"tsm": "typed-scss-modules \"src/**/*.module.scss\"",
"tsm:watch": "typed-scss-modules \"src/**/*.module.scss\" --watch",
"redirect": "rimraf scripts/dist && tsc -p tsconfig.scripts.json && node scripts/dist/scripts/redirect.mjs",
"prepare": "npx simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged -p false -c .lintstagedrc.mjs"
},
"volta": {
"node": "18.17.0",
"pnpm": "8.6.6"
},
"engines": {
"node": "^18.17.0"
},
"dependencies": {
"@chakra-ui/next-js": "^2.1.5",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"chakra-react-select": "^4.7.5",
"chart.js": "^4.4.0",
"chartjs-plugin-datalabels": "^2.2.0",
"clsx": "^2.0.0",
"framer-motion": "^10.16.4",
"lodash-es": "^4.17.21",
"lokijs": "^1.5.12",
"lz-string": "^1.5.0",
"next": "13.5.6",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.11.0",
"react-use": "^17.4.0",
"react-virtualized": "^9.22.5"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@tsconfig/strictest": "^2.0.2",
"@types/fs-extra": "^11.0.3",
"@types/lodash-es": "^4.17.10",
"@types/lokijs": "^1.5.11",
"@types/node": "20.8.7",
"@types/react": "18.2.31",
"@types/react-dom": "18.2.14",
"@types/react-virtualized": "^9.21.26",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"dotenv": "^16.3.1",
"eslint": "8.52.0",
"eslint-config-next": "13.5.6",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-i": "2.28.1",
"eslint-plugin-tsdoc": "^0.2.17",
"fs-extra": "^11.1.1",
"lint-staged": "^15.0.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-scss": "^4.0.9",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"sass": "^1.69.4",
"sass-loader": "^13.3.2",
"serve": "^14.2.1",
"simple-git-hooks": "^2.9.0",
"stylelint": "^15.11.0",
"stylelint-config-property-sort-order-smacss": "^9.1.0",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^4.0.2",
"typed-scss-modules": "^7.1.4",
"typescript": "5.2.2",
"webpack": "^5.89.0"
}
}