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
86 lines (86 loc) · 4.01 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 4.01 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
80
81
82
83
84
85
86
{
"name": "@msrvida/sanddance-root",
"private": true,
"version": "1.0.0",
"description": "SandDance development monorepo.",
"scripts": {
"python:dev": "lerna run dev:all --parallel --scope @msrvida/sanddance-jupyter-widget",
"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/v3 && rimraf docs/docs/sanddance/v3 && rimraf docs/docs/sanddance-explorer/v3 && rimraf docs/docs/sanddance-react/v3 && rimraf docs/docs/sanddance-specs/v1",
"docs": "lerna run docs && 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",
"start:python": "npm-run-all --parallel watch-typescript python-webpack-watch python: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",
"python-webpack-watch": "lerna run webpack-watch --scope @msrvida/sanddance-jupyter-widget --parallel",
"azdata-webpack-extension": "lerna run webpack --scope azdata-sanddance --parallel",
"vscode-webpack-extension": "lerna run webpack --scope vscode-sanddance --parallel"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/SandDance.git"
},
"author": "Dan Marshall",
"license": "MIT",
"devDependencies": {
"@babel/helper-compilation-targets": "^7.10.2",
"@parcel/packager-ts": "^2.0.1",
"@parcel/transformer-sass": "^2.0.1",
"@parcel/transformer-typescript-types": "^2.0.1",
"@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": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-plugin-react": "^7.27.1",
"esm": "^3.2.25",
"fs-extra": "^7.0.1",
"inuitcss": "^6.0.0",
"lerna": "^4.0.0",
"marked": "^4.0.10",
"mdast-util-toc": "^3.0.1",
"mocha": "^7.1.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.0.1",
"rimraf": "^2.6.2",
"rollup": "^1.32.1",
"rollup-plugin-vue": "^5.1.7",
"sass": "^1.32.4",
"ts-loader": "^7.0.5",
"typedoc": "^0.21.9",
"typescript": "4.3",
"unified": "^7.0.2",
"vsce": "^1.88.0",
"vue-template-compiler": "^2.6.11",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0"
},
"babel": {
"presets": [
"es2015"
]
}
}