-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.43 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
{
"name": "a-frame_learn",
"version": "1.0.0",
"description": "My A-Frame Scene!For Psychology",
"scripts": {
"fastapi:dev": "uvicorn backend.main:app --reload --host 0.0.0.0 --port 8000",
"fastapi:prod": "uvicorn backend.main:app --host 0.0.0.0 --port 8000 --ssl-keyfile /etc/letsencrypt/live/psyventures.cn/privkey.pem --ssl-certfile /etc/letsencrypt/live/psyventures.cn/fullchain.pem",
"aframe": "cross-env NODE_ENV=development snowpack dev --no-hmr",
"build": "cross-env NODE_ENV=production snowpack build",
"serve": "http-server build -c-1 -p 4000 --404 _404.html",
"start:dev": "concurrently \"pnpm run aframe\" \"pnpm run fastapi:dev\"",
"start:prod": "cross-env NODE_ENV=production pnpm run build && concurrently \"pnpm run serve\" \"pnpm run fastapi:prod\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Schweik7/A-Frame_learn.git"
},
"keywords": [
"aframe",
"js",
"fastapi"
],
"author": "Schweik7",
"license": "ISC",
"bugs": {
"url": "https://github.com/Schweik7/A-Frame_learn/issues"
},
"homepage": "https://github.com/Schweik7/A-Frame_learn#readme",
"devDependencies": {
"cannon-es": "^0.20.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"snowpack": "^3.8.8",
"three": "^0.166.1"
},
"dependencies": {
"@tweenjs/tween.js": "^23.1.2",
"dotenv-flow": "^4.1.0",
"serve": "^14.2.3",
"wretch": "^2.9.0"
}
}