forked from protectwise/troika
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 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
{
"name": "troika",
"private": true,
"description": "Troika - a framework for managing Three.js scenes using point-in-time descriptors. Includes support for automatic transitions, animations, and pointer events.",
"author": "Jason Johnston <[email protected]>",
"license": "MIT",
"engines": {
"npm": "=6.11.3"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"acorn": "^6.4.2",
"babel-jest": "^26.6.3",
"event-target-polyfill": "^0.0.3",
"gl": "^5.0.0",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"mitt": "^1.2.0",
"node-fetch": "^2.6.0",
"postcss": "^8.2.6",
"rollup": "^2.39.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^4.2.0",
"rollup-watch": "^4.3.1",
"standard": "^16.0.3",
"uuid-v4": "^0.1.0"
},
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap --hoist",
"build": "lerna exec --ignore=troika-examples -- rollup -c \\$LERNA_ROOT_PATH/rollup.config.js",
"build-typr": "lerna exec --scope=troika-three-text -- npm run build-typr",
"build-woff2otf": "lerna exec --scope=troika-three-text -- npm run build-woff2otf",
"build-yoga": "npm run bootstrap && lerna exec --scope=troika-flex-layout -- npm run build-yoga",
"test": "jest",
"build-examples": "lerna exec --scope=troika-examples -- npm run build",
"serve-examples": "lerna exec --scope=troika-examples -- npm run serve",
"examples": "npm run serve-examples",
"serve-docs": "mkdocs serve --strict",
"build-docs": "mkdocs build --strict",
"deploy-docs": "mkdocs gh-deploy --strict",
"clean": "lerna exec -- rm -rf dist",
"lint": "lerna exec -- standard src/**/*.js src/**/*.jsx"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}