forked from microsoft/SandDance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.19 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 3.19 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@msrvida/sanddance-root",
"private": true,
"version": "1.0.0",
"description": "SandDance development monorepo.",
"scripts": {
"vegatest": "lerna run vegatest --parallel",
"eslint": "lerna run eslint --parallel",
"build-az": "lerna run build --scope azdata-sanddance",
"postinstall": "node ./scripts/copy_inuitcss.js",
"predocs": "rimraf docs/docs/vega-deck.gl/v2 && rimraf docs/docs/sanddance/v2 && rimraf docs/docs/sanddance-explorer/v2 && rimraf docs/docs/sanddance-react/v2",
"docs": "lerna run docs && node ./scripts/docs.js && node ./scripts/toc.js && node ./scripts/readme.js",
"bootstrap": "lerna bootstrap",
"build:sanddance-core": "lerna run build:sanddance-core",
"build:sanddance-integration": "lerna run build:sanddance-integration",
"build:sanddance-integration-python": "lerna run build:sanddance-integration-python",
"build": "npm run bootstrap && npm run build:sanddance-core && npm run build:sanddance-integration && npm run build:sanddance-integration-python",
"build-test": "lerna run build-test",
"app-dev": "lerna run start --parallel --scope @msrvida/sanddance-app",
"watch-css": "lerna run watch-css --parallel",
"watch-typescript": "lerna run watch-typescript --parallel",
"start": "npm-run-all --parallel watch-typescript watch-css app-dev",
"parcel": "lerna run parcel --parallel",
"clean-build": "rimraf ./packages/**/dist/ && rimraf ./packages/**/.cache/ && rimraf ./**/package-lock.json && rimraf ./lerna-debug.log",
"clean": "lerna clean --yes && npm run clean-build",
"remove-pem": "rimraf **/*.pem && rimraf **/*.key",
"deploy": "lerna run deploy",
"test": "npm run eslint && lerna run test && lerna run package",
"package": "lerna run package --parallel",
"dev": "lerna run dev --scope dev --parallel",
"build-rec": "lerna run build --scope @msrvida/chart-recommender",
"test-rec": "lerna run test --scope @msrvida/chart-recommender"
},
"repository": {
"type": "git",
"url": "https://msrp-data-vis.visualstudio.com/_git/SandDanceCanvas"
},
"author": "Dan Marshall",
"license": "MIT",
"devDependencies": {
"@babel/helper-compilation-targets": "^7.10.2",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-typescript": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^6.4.0",
"eslint-plugin-react": "^7.14.3",
"esm": "^3.2.25",
"fs-extra": "^7.0.1",
"inuitcss": "^6.0.0",
"lerna": "^3.20.2",
"marked": "^0.7.0",
"mdast-util-toc": "^3.0.1",
"mocha": "^7.1.1",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12",
"remark": "^10.0.1",
"remark-parse": "^6.0.3",
"remark-toc": "^5.1.1",
"rimraf": "^2.6.2",
"rollup": "^1.32.1",
"rollup-plugin-vue": "^5.0.1",
"typescript": "^3.5",
"unified": "^7.0.2",
"vsce": "^1.66.0",
"vue-template-compiler": "^2.6.11"
},
"babel": {
"presets": [
"es2015"
]
}
}