-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
49 lines (49 loc) · 1.8 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
{
"name": "jb-animation-generator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"css-loader": "^3.0.0",
"dat.gui": "^0.7.6",
"elm-webpack-loader": "^8.0.0",
"elm-test": "^0.19.1-revision9",
"flat-surface-shader": "github:shamansir/flat-surface-shader",
"jszip": "^3.7.0",
"jszip-utils": "0.0.2",
"webpack": "^4.35.2",
"webpack-dev-server": "^3.7.2",
"fstream": ">=1.0.12",
"tar": ">=4.4.18"
},
"devDependencies": {
"elm-svg-loader": "^1.0.2",
"loader-utils": "^1.2.3",
"raw-loader": "^3.0.0",
"style-loader": "^0.23.1",
"uglify-js": "^3.6.0",
"webpack-cli": "^3.3.5"
},
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --mode=development",
"start:prod": "./node_modules/.bin/simplehttpserver -p 8080 .",
"build:elm": "elm-make elm_src/Main.elm --output=./build/Main.js",
"build:uglify": "./node_modules/uglify-js/bin/uglifyjs ./build/Main.js --output ./build/Main.min.js",
"build": "./node_modules/.bin/webpack --config webpack.config.js --output ./app.js --mode=production",
"build:fss:elm": "elm-make elm_src/MainFSS.elm --output=./build/MainFSS.js",
"build:fss:uglify": "./node_modules/uglify-js/bin/uglifyjs ./build/MainFSS.js --output ./build/MainFSS.min.js",
"build:fss": "npm run build:fss:elm && npm run build:fss:uglify",
"build:player": "./node_modules/.bin/webpack --config player.webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shamansir/lorenz-elm-webgl.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/shamansir/lorenz-elm-webgl/issues"
},
"homepage": "https://github.com/shamansir/lorenz-elm-webgl#readme"
}