-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
85 lines (85 loc) · 2.89 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "ixviii.medium",
"version": "0.4.3",
"description": "Progressive WebGL toolkit for art.",
"main": "lib/ixviii.medium.js",
"scripts": {
"start":
"concurrently 'npm run server' 'npm run examples:js' 'npm run examples:html'",
"server":
"live-server ./examples --quiet --port=3000 --watch='js/*,assets/**/*,*.html' --ignore='src'",
"examples:js":
"webpack --config webpack.config.examples.js --colors --watch",
"examples:html": "node ./pug.config.js",
"examples:build":
"NODE_ENV=production webpack --config webpack.config.examples.js --colors; node ./pug.config.js",
"build":
"NODE_ENV=production npm run lint; webpack --config webpack.config.build.js --colors; NODE_ENV=production webpack --config webpack.config.build.js --colors",
"prepublish": "npm run build",
"formatting":
"prettier --write --single-quote --print-width 80 './src/**/*.ts'",
"formatting:examples":
"prettier --write --single-quote --print-width 80 './examples/src/js/**/*.js'",
"lint:src": "tslint --fix ./src/**/*.ts",
"lint:examples":
"eslint --fix --ext .js ./examples/src ./internals --cache",
"lint": "npm run lint:src; npm run lint:examples;",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/amelierosser/medium.git"
},
"author":
"Amelie Rosser <[email protected]> (https://www.ixviii.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/amelierosser/medium/issues"
},
"homepage": "https://github.com/amelierosser/medium",
"devDependencies": {
"@types/gl-matrix": "^2.3.0",
"@types/node": "^10.5.2",
"@types/webgl2": "^0.0.2",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-minify": "^0.2.0",
"babili-webpack-plugin": "^0.1.2",
"concurrently": "^3.5.0",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-config-prettier": "^2.4.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"install": "^0.10.1",
"json-loader": "^0.5.7",
"live-server": "^1.2.0",
"prettier": "^1.6.1",
"pug-cli": "^1.0.0-alpha6",
"stats-js": "^1.0.0-alpha1",
"ts-loader": "^2.3.7",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"typescript": "^2.5.2",
"webpack": "^3.5.6"
},
"dependencies": {
"@types/dat-gui": "^0.6.3",
"bezier-js": "^2.2.3",
"dat-gui": "^0.5.0",
"file-name": "^0.1.0",
"gl-matrix": "^2.4.0",
"parse-hdr": "^1.0.0",
"query-string": "^5.0.0",
"shelljs": "^0.7.8",
"simplex-noise": "^2.3.0",
"uuid": "^3.1.0",
"webgl-obj-loader": "^0.1.1"
}
}