-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "web-vr-hello-planiverse",
"version": "1.0.0",
"description": "Web VR Demo",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint --project tsconfig.json -t codeFrame src/**/*.ts",
"build": "webpack --mode=production",
"start:dev": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dplusic/web-vr-hello-planiverse.git"
},
"author": "Dongwoon Son <dplusic@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dplusic/web-vr-hello-planiverse/issues"
},
"homepage": "https://github.com/dplusic/web-vr-hello-planiverse#readme",
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@types/node": "^10.12.18",
"@types/three": "^0.93.14",
"@types/webpack": "^4.4.22",
"@types/webpack-dev-server": "^3.1.1",
"prettier": "^1.15.3",
"ts-loader": "^5.3.2",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.2",
"typescript-tslint-plugin": "^0.2.1",
"webpack": "^4.28.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"three": "^0.99.0",
"three-text2d": "^0.4.1"
}
}