-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
57 lines (57 loc) · 1.7 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
{
"name": "@universalviewer/aleph",
"version": "0.0.21",
"description": "Aleph",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/aleph/aleph.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"lint:all": "prettier --write \"./src/**/*.{js,jsx,json,css,ts,tsx}\" \"!./src/assets/* \"",
"build:dev": "npm run lint:all && stencil build --dev",
"build:quick": "stencil build",
"build": "npm run lint:all && stencil build --docs",
"start": "stencil build --dev --watch --serve",
"start:prod": "stencil build --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@edsilv/key-codes": "0.1.1",
"@edsilv/stencil-redux": "0.1.1",
"@ionic/core": "^4.11.5",
"redux": "^4.0.1",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0",
"threejs-meshline": "^2.0.11"
},
"devDependencies": {
"@stencil/core": "1.3.0",
"@types/aframe": "0.8.3",
"@types/jest": "24.0.18",
"@types/puppeteer": "1.19.1",
"@types/redux": "3.6.0",
"@types/three": "0.103.2",
"copyfiles": "2.1.1",
"glslify": "^7.0.0",
"jest": "24.8.0",
"jest-cli": "24.8.0",
"prettier": "1.18.2",
"prettier-check": "2.0.0",
"puppeteer": "1.19.0",
"rollup-plugin-glslify": "^1.1.2",
"tslint": "^5.19.0",
"tslint-config-prettier": "1.18.0",
"typescript-tslint-plugin": "0.5.4"
},
"license": "MIT"
}