-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 KB
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
{
"name": "geometry-crack",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "npm run lint:es && npm run lint:style",
"lint:es": "eslint . --ext=ts,cts,mts,js,cjs,mjs --fix --cache",
"lint:style": "stylelint 'src/**/*.css' --cache",
"deploy": "npm run build && gh-pages -d dist",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@namics/stylelint-bem": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.16",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"postcss": "^8.4.31",
"postcss-nested": "^6.0.1",
"prettier": "^2.8.8",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3",
"typescript": "^4.9.5",
"vite": "^4.4.11",
"vite-tsconfig-paths": "^3.6.0"
},
"pnpm": {
"overrides": {
"json5@<1.0.2": ">=1.0.2",
"json5@>=2.0.0 <2.2.2": ">=2.2.2"
}
},
"dependencies": {
"@fontsource/noto-sans": "^5.0.15",
"@fontsource/roboto": "^5.0.8",
"eslint": "^8.53.0",
"postcss-import": "^15.1.0",
"xstate": "^4.38.2"
}
}