-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·70 lines (70 loc) · 2.34 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
{
"name": "webgl-prototype",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently 'yarn run server' 'yarn run watch'",
"server": "live-server ./public --port 3000 --quiet --watch ./public",
"watch": "NODE_ENV=development webpack --config webpack.config.js --colors --watch",
"build": "NODE_ENV=production webpack --config webpack.config.js --colors",
"lint:src": "tslint --fix ./src/js/**/*.ts",
"lint:scripts": "eslint --fix --ext .js ./scripts ./internals --cache",
"lint": "yarn run lint:src; yarn run lint:scripts",
"three-examples": "node scripts/three-examples",
"texture-optimise": "node scripts/texture-optimise",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amelierosser/webgl-prototype.git"
},
"author": "Amelie Rosser <[email protected]> (https://www.ixviii.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/amelierosser/webgl-prototype/issues"
},
"homepage": "https://github.com/amelierosser/webgl-prototype#readme",
"devDependencies": {
"@babel/core": "^7.0.0-beta.34",
"@types/dat-gui": "^0.6.3",
"@types/event-emitter": "^0.3.2",
"@types/node": "^8.0.57",
"@types/query-string": "^5.0.1",
"@types/three": "^0.84.35",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"concurrently": "^3.5.1",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"live-server": "^1.2.0",
"progress-bar-webpack-plugin": "^1.10.0",
"ts-loader": "^3.2.0",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
},
"dependencies": {
"dat.gui": "^0.6.5",
"deep-extend": "^0.5.0",
"event-emitter": "^0.3.5",
"file-extension": "^4.0.1",
"file-name": "^0.1.0",
"query-string": "^5.0.1",
"sharp": "^0.18.4",
"shelljs": "^0.7.8",
"stats-js": "^1.0.0-alpha1",
"three": "^0.88.0",
"three-material-modifier": "^0.0.3",
"three-obj-loader": "^1.1.3",
"ua-parser-js": "^0.7.17"
}
}