forked from omegasisters/homepage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.84 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
{
"name": "omegasisters-homepage",
"description": "https://omegasisters.github.io/homepage",
"version": "0.0.1",
"license": "UNLICENSED",
"private": true,
"scripts": {
"build": "npm run pika && npm run pika:dev && npm run ts",
"dev": "browser-sync start --server --files '*.js' .",
"format": "prettier --write \"**/*.{css,html,json,md}\"",
"pika": "rm -rf web_modules && pika-web --dest web_modules",
"pika:dev": "rm -rf homepage && mkdir homepage && cp -r web_modules homepage/web_modules",
"start": "npm run build && concurrently 'npm run ts:watch' 'npm run dev'",
"start:docker": "npm run build && concurrently 'npm run ts:watch' 'serve -s ./'",
"test": "jest",
"ts": "rm -rf preact_build && tsc",
"ts:watch": "tsc -w"
},
"dependencies": {
"preact": "^10.1.1",
"three": "^0.111.0"
},
"devDependencies": {
"@pika/web": "^0.6.1",
"@types/jest": "^24.0.24",
"browser-sync": "^2.26.7",
"concurrently": "^5.0.0",
"copyfiles": "^2.1.1",
"express": "^4.17.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"serve": "^11.2.0",
"ts-jest": "^24.2.0",
"typescript": "^3.6.3"
},
"main": "server.js",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"@pika/web": {
"webDependencies": [
"preact",
"preact/hooks",
"three",
"three/examples/jsm/controls/OrbitControls.js",
"three/examples/jsm/loaders/FBXLoader.js",
"three/examples/jsm/loaders/GLTFLoader.js",
"three/examples/jsm/webxr/VRButton.js"
]
},
"bugs": {
"url": "https://github.com/omegasisters/homepage/issues"
},
"homepage": "https://github.com/omegasisters/homepage",
"repository": {
"type": "git",
"url": "git+https://github.com/omegasisters/homepage.git"
}
}