generated from gnikoloff/frontend-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.9 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": "webgpu-sketch-dojo",
"version": "0.0.1",
"description": "WebGPU demos & examples written from scratch",
"scripts": {
"lint": "eslint src",
"watch": "rollup --watch --c",
"build": "NODE_ENV=production rollup --c",
"start": "run-s build build:docs serve:docs",
"start:local": "run-s build:docs serve:docs watch",
"generate-demos": "node create-example-markdown-files.js",
"copy-examples-definitions": "shx cp -r EXAMPLES_DEFINITIONS.json ./site/_data/",
"serve:docs": "npx eleventy --config=./eleventy.js --serve",
"build:docs": "run-s generate-demos copy-examples-definitions"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnikoloff/frontend-boilerplate.git"
},
"author": "Georgi Nikolov",
"license": "MIT",
"bugs": {
"url": "https://github.com/gnikoloff/frontend-boilerplate/issues"
},
"homepage": "https://github.com/gnikoloff/frontend-boilerplate#readme",
"dependencies": {
"@loaders.gl/core": "^3.0.11",
"@loaders.gl/gltf": "^3.0.11",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-strip": "^2.0.1",
"@webgpu/glslang": "0.0.15",
"@webgpu/types": "^0.1.6",
"color-parse": "^1.4.2",
"compression": "^1.7.4",
"dat.gui": "^0.7.7",
"express": "^4.17.1",
"gl-matrix": "^3.3.0",
"rollup": "^2.51.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-glslify": "^1.2.0",
"rollup-plugin-import-css": "^2.0.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.4",
"tslib": "^2.3.1"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"eslint": "^7.28.0",
"i": "^0.3.6",
"npm": "^7.22.0",
"npm-run-all": "^4.1.5",
"shx": "^0.3.3",
"typescript": "^4.3.2"
}
}