-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.58 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
48
49
50
51
52
53
54
55
56
{
"name": "gl-circle",
"version": "1.0.0",
"description": "WebGL Demo.",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run server",
"build": "cross-env MODE_ENV=production ./node_modules/.bin/webpack",
"server": "./node_modules/.bin/webpack-serve ./webpack.config.js --open"
},
"homepage": "https://iaosee.github.io/gl-circle/",
"repository": {
"type": "git",
"url": "https://github.com/iaosee/gl-circle.git"
},
"keywords": [
"WebGL",
"Graphic"
],
"author": "iaosee@outlook.com",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.2.0",
"@types/dat.gui": "^0.7.5",
"@types/webgl2": "0.0.4",
"@types/node": "^11.11.5",
"cross-env": "^7.0.2",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^2.1.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"node-sass": "~4.14.0",
"postcss-loader": "^2.1.6",
"sass-loader": "^7.1.0",
"style-loader": "^0.21.0",
"ts-loader": "^5.3.3",
"typescript": "^3.3.4000",
"url-loader": "^1.1.2",
"webpack": "^4.28.0",
"webpack-cli": "^3.1.2",
"webpack-serve": "^1.0.4"
},
"dependencies": {
"dat.gui": "^0.7.7",
"gl-matrix-ts": "^2.3.3"
}
}