-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.37 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
{
"name": "ts-ast-viewer",
"version": "0.25.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-app-rewired --max_old_space_size=4096 start",
"build": "react-app-rewired --max_old_space_size=4096 build",
"format": "dprint fmt",
"test": "react-app-rewired 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.20.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-monaco-editor": "0.36.0",
"react-redux": "^7.2.0",
"react-spinners": "^0.8.3",
"react-split-pane": "^0.1.91",
"react-treeview": "^0.4.7",
"redux": "^4.0.5",
"typescript": "3.9.2",
"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]",
"typescript-3.7.5": "npm:[email protected]",
"typescript-3.8.3": "npm:[email protected]",
"zod": "^1.10.1"
},
"devDependencies": {
"@types/circular-json": "^0.4.0",
"@types/glob": "^7.1.1",
"@types/inline-style-prefixer": "^5.0.0",
"@types/jest": "^25.2.1",
"@types/lz-string": "^1.3.34",
"@types/node": "^13.13.5",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-redux": "^7.1.8",
"@types/react-treeview": "^0.4.2",
"cross-env": "^7.0.2",
"dts-minify": "^0.2.0",
"gh-pages": "^2.2.0",
"glob": "^7.1.6",
"monaco-editor-webpack-plugin": "^1.9.0",
"react-app-rewired": "^2.1.6",
"react-scripts": "3.4.1",
"ts-factory-code-generator-generator": "^0.5.5",
"ts-jest": "^25.5.1",
"ts-morph": "^7.0.3",
"ts-node": "^8.10.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}