-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
58 lines (58 loc) · 1.66 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
{
"name": "three-craft",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "cross-env NODE_ENV=development eslint src/ --fix --ext .ts,.tsx,.vue,.js,.jsx",
"lint:development": "cross-env NODE_ENV=development eslint src/ --fix --ext .ts,.tsx,.vue,.js,.jsx",
"lint:production": "cross-env NODE_ENV=production eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",
"prettier": "prettier --write .",
"prepare": "husky install",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"keywords": [],
"author": "LiuKairui",
"license": "ISC",
"dependencies": {
"socket.io-client": "^4.5.1",
"three": "^0.140.2"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@types/node": "^17.0.35",
"@types/three": "^0.140.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"consola": "^2.15.3",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"less": "^4.1.2",
"lint-staged": "^12.4.1",
"mrm": "^4.0.0",
"prettier": "^2.6.2",
"typescript": "^4.6.4",
"typescript-eslint": "0.0.1-alpha.0",
"vite": "^2.9.9",
"vite-plugin-pwa": "^0.12.0",
"vite-plugin-style-import": "^2.0.0"
},
"lint-staged": {
"src/**/*.{ts,tsx,vue,js,jsx}": [
"pnpm lint:development",
"pnpm prettier",
"git add "
]
}
}