forked from dsherret/ts-ast-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.45 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ts-ast-viewer",
"version": "0.24.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/dsherret/ts-ast-viewer.git"
},
"keywords": [
"typescript",
"ast",
"viewer"
],
"author": "David Sherret",
"license": "MIT",
"bugs": {
"url": "https://github.com/dsherret/ts-ast-viewer/issues"
},
"homepage": "./",
"scripts": {
"postinstall": "yarn install --cwd e2e",
"start": "npm run updateCompilerFiles && react-scripts --max_old_space_size=4096 start",
"build": "react-scripts --max_old_space_size=4096 build",
"format": "dprint",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "CI=false && cross-env NODE_OPTIONS=--max_old_space_size=4096 && npm run build",
"deploy": "npm run predeploy && gh-pages -d build",
"updateCompilerFiles": "npm run copyLibFiles && npm run createCompilerVersions && npm run createFactoryCode && npm run createPublicApiInfo",
"copyLibFiles": "ts-node --project scripts/tsconfig.json scripts/copyLibFiles.ts ",
"createCompilerVersions": "ts-node --project scripts/tsconfig.json scripts/createCompilerVersions.ts",
"createFactoryCode": "ts-node --project scripts/tsconfig.json scripts/createFactoryCode.ts",
"createPublicApiInfo": "ts-node --project scripts/tsconfig.json scripts/createPublicApiInfo.ts",
"cypress:run": "npm run --prefix e2e cypress:wait-run",
"cypress": "start npm run start && start npm run cypress:run",
"cypress:ci": "npm run start & npm run cypress:run",
"cypress:open": "npm run --prefix e2e cypress:open"
},
"dependencies": {
"circular-json": "^0.5.9",
"lz-string": "^1.4.4",
"monaco-editor": "^0.18.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-monaco-editor": "0.32.1",
"react-redux": "^7.1.3",
"react-spinners": "^0.6.1",
"react-split-pane": "^0.1.89",
"react-treeview": "^0.4.7",
"redux": "^4.0.4",
"typescript": "3.7.3",
"typescript-2.6.2": "npm:[email protected]",
"typescript-2.7.2": "npm:[email protected]",
"typescript-2.8.4": "npm:[email protected]",
"typescript-2.9.2": "npm:[email protected]",
"typescript-3.0.3": "npm:[email protected]",
"typescript-3.1.6": "npm:[email protected]",
"typescript-3.2.4": "npm:[email protected]",
"typescript-3.3.3": "npm:[email protected]",
"typescript-3.4.5": "npm:[email protected]",
"typescript-3.5.3": "npm:[email protected]",
"typescript-3.6.4": "npm:[email protected]"
},
"devDependencies": {
"@types/circular-json": "^0.4.0",
"@types/glob": "^7.1.1",
"@types/inline-style-prefixer": "^5.0.0",
"@types/jest": "^24.0.23",
"@types/lz-string": "^1.3.33",
"@types/node": "^12.12.17",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@types/react-treeview": "^0.4.2",
"cross-env": "^6.0.3",
"dprint": "^0.7.3",
"dprint-plugin-jsonc": "^0.2.4",
"dprint-plugin-typescript": "^0.10.0",
"dts-minify": "^0.2.0",
"gh-pages": "^2.1.1",
"glob": "^7.1.6",
"react-scripts": "^3.3.0",
"ts-factory-code-generator-generator": "^0.5.2",
"ts-jest": "^24.2.0",
"ts-morph": "^6.0.2",
"ts-node": "^8.5.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}