forked from pixano/pixano-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.75 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
{
"name": "pixano-elements",
"private": true,
"version": "0.7.0",
"devDependencies": {
"glob": "7.1.6",
"lerna": "3.20.2",
"rimraf": "^2.6.2",
"tslint": "6.1.3",
"typedoc": "0.17.4",
"typedoc-plugin-lerna-packages": "0.3.0"
},
"scripts": {
"bootstrap": "lerna bootstrap --hoist --strict --force-local",
"clearall": "npm run clean && rimraf -rf node_modules/ packages/*/node_modules/ demo/node_modules/ package-lock.json packages/*/package-lock.json demo/package-lock.json",
"build": "lerna run build",
"build:umd": "lerna run build:umd",
"watch": "lerna run watch --parallel",
"clean": "lerna run clean",
"test": "lerna run test",
"serve": "serve",
"tslint": "tslint -c tslint.json packages/**/src/*.ts",
"docs": "rimraf -rf docs && typedoc packages && grep -rl 'globals.html' docs/* | xargs -i@ sed -i 's/globals.html/index.html/g' @ && mv docs/globals.html docs/index.html",
"deps": "npm i --production=false && cd packages/core && npm i && cd ../ai && npm i && cd ../graphics-2d && npm i && cd ../graphics-3d && npm i && cd ../../demo && npm i && cd .. && npm run bootstrap",
"installLocalElements": "cd packages/ai && rimraf -rf node_modules/@pixano package-lock.json && npm i ../core && cd - && cd packages/graphics-2d && rimraf -rf node_modules/@pixano package-lock.json && npm i ../core && npm i ../ai && cd - && cd packages/graphics-3d && rimraf -rf node_modules/@pixano package-lock.json && npm i ../core && cd ../.. && npm run bootstrap",
"installLocalDemo": "cd demo && rimraf -rf node_modules/@pixano package-lock.json && npm i ../packages/core && npm i ../packages/graphics-2d && npm i ../packages/graphics-3d && cd .. && npm run bootstrap"
},
"dependencies": {
"serve": "^10.1.2"
}
}