-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.65 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
{
"private": true,
"devDependencies": {
"@types/file-saver": "^0.0.0",
"@types/jszip": "^0.0.31",
"@types/three": "^0.84.22",
"bower": "^1.7.9",
"bower-locker": "^1.0.3",
"browser-sync": "^2.7.7",
"concurrently": "3.1.0",
"connect-history-api-fallback": "^1.1.0",
"glslify-bundle": "^5.1.1",
"glslify-deps": "^1.3.1",
"http-server": "^0.11.1",
"jshint-stylish": "^2.0.0",
"lite-server": "2.2.2",
"nodemon": "^1.12.4",
"parcel-bundler": "^1.12.3",
"recursive-copy": "^2.0.7",
"rollup": "^0.54.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-string": "^2.0.2",
"run-sequence": "^1.0.2",
"tslint": "^5.9.1",
"typescript": "^2.6.1",
"watch": "^1.0.1"
},
"alias": {
"microtome": "./src/lib/index.ts",
"three": "three-full"
},
"scripts": {
"copy:definitions": "node ./scripts/copy_definitions.js",
"copy:resources": "node ./scripts/copy_shaders.js",
"assemble": "node ./scripts/assemble_resources.js",
"clean": "rm -rf ./dist && rm -rf ./build && rm -rf ./public",
"build:lib": "tsc -p src/lib && yarn run copy:resources && rollup -c rollup-config-lib.js && yarn run copy:definitions",
"build:app": "parcel build -d dist/app --no-minify --experimental-scope-hoisting src/app/index.html",
"serve:hot": "parcel serve -d dist/app src/app/index.html",
"serve": "yarn run build:app && http-server ./dist/app"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"file-saver": "^1.3.3",
"jszip": "^3.1.3",
"three-full": "17.1.0"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions"
]
}