-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
{
"name": "fractal-erosion-webgl",
"version": "1.1.0",
"description": "Fractal erosion webgl",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "webpack serve --config webpack.dev.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"clean": "clean-node",
"rebuild": "npm run clean && npm install && npm run build"
},
"keywords": [
"fractal",
"diamond square",
"webgl"
],
"author": "Ervin Szilagyi",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Ernyoke/fractal-erosion-webgl"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "8.22.0",
"eslint-config-google": "^0.14.0",
"file-loader": "^6.2.0",
"gh-pages": "^4.0.0",
"gl-matrix": "^3.4.3",
"html-webpack-plugin": "^5.5.0",
"sass": "^1.54.8",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.1",
"webpack-glsl-loader": "^1.0.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"bootstrap": "^5.2.0"
},
"eslintConfig": {
"env": {
"browser": true,
"node": false
}
},
"eslintIgnore": [
"webpack.*.js",
"node_modules/",
"*.conf.js"
]
}