forked from vdqbstp/playground-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.57 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
{
"private": true,
"name": "oasis-playground",
"version": "0.3.0",
"description": "",
"main": "index.js",
"scripts": {
"link": "sudo npm link ../engine/packages/* --no-package-lock",
"dev": "vite",
"dev:demosify": "demosify --serve",
"build": "demosify --prod",
"b:mini": "node scripts/to-mini-program.js",
"add-demo": "node scripts/add-demo.js"
},
"repository": {
"type": "git",
"url": "[email protected]:fetest/fe_hook_test.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"@oasis-engine/controls": "^0.3.0",
"@oasis-engine/engine-spine": "^0.1.2",
"@oasis-engine/framebuffer-picker": "^0.3.0",
"dat.gui": "^0.7.7",
"oasis-engine": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.1",
"@babel/generator": "^7.12.1",
"@babel/parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@babel/standalone": "7.12.6",
"@babel/traverse": "^7.12.1",
"@demosify/core": "^0.6.0",
"@rollup/plugin-babel": "^5.2.1",
"chalk": "^4.1.0",
"copy-dir": "^1.3.0",
"fs-extra": "^9.0.1",
"husky": "^4.2.5",
"inquirer": "^7.3.3",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"replace-in-file": "^6.1.0",
"sass": "^1.26.10",
"snowpack": "^2.6.4",
"typescript": "^3.9.6",
"vite": "^1.0.0-beta.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,json}": [
"prettier --write"
]
}
}