-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "webgl_fragment",
"version": "1.0.0",
"description": "webGL fragment shader demo",
"main": "app.js",
"scripts": {
"start": "npm run dev",
"dev": "webpack-dev-server --watch-poll --config ./webpack.config.js",
"build": "rimraf dist && webpack --env.production --config ./webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhouzhili/webGL-fragment-render.git"
},
"keywords": [
"webGL",
"fragment",
"shader"
],
"author": "zzl",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhouzhili/webGL-fragment-render/issues"
},
"homepage": "https://github.com/zhouzhili/webGL-fragment-render#readme",
"dependencies": {
"@babel/runtime": "^7.5.5",
"monaco-editor": "0.19.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^5.0.3",
"eslint": "^5.12.0",
"eslint-config-sprite": "^1.0.6",
"eslint-plugin-html": "^5.0.0",
"glsl-shader-loader": "^0.1.6",
"html-webpack-plugin": "^3.2.0",
"monaco-editor-webpack-plugin": "^1.7.0",
"style-loader": "^0.23.1",
"css-loader": "^2.1.0",
"url-loader": "^1.1.2",
"file-loader": "^3.0.1",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14"
}
}