-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.91 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.91 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
{
"name": "graph-viz",
"version": "0.1.0",
"main": "index.js",
"repository": "https://github.com/uplevel-technology/graph-viz.git",
"author": "sagar-sm <sagar.mohite@live.com>",
"license": "MIT",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"generate-api-docs": "typedoc packages",
"deploy-docs": "cd website && yarn run build && GIT_USER=sagar-sm CURRENT_BRANCH=master yarn run publish-gh-pages",
"start-docs": "cd website && yarn run start",
"test": "lerna run test",
"build": "lerna run build",
"prepublishOnly": "lerna run build"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"ajv": "^6.12.2",
"babel-plugin-inline-json-import": "^0.3.2",
"babel-plugin-parameter-decorator": "^1.0.16",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"gh-pages": "^2.1.1",
"jest": "^24.9.0",
"lerna": "^3.21.0 ",
"npm": "^6.11.2",
"prettier": "^1.18.2",
"rollup": "^2.6.1",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"typedoc": "^0.17.6",
"typedoc-plugin-external-module-map": "^1.2.1",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.9.2",
"typescript-json-schema": "^0.42.0"
}
}