-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.24 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
{
"name": "stage",
"version": "1.1.3",
"scripts": {
"clearNextTemp": "rm -rf ./.next",
"dev": "npm run clearNextTemp && next dev",
"build": "npm run clearNextTemp && next build",
"linkArranger": "npm link @overture-stack/arranger-components --ignore-scripts",
"patchTS": "ts-patch install -s",
"prepare": "npm run patchTS",
"reset": "npm run clearNextTemp && rm -rf ./node_modules",
"start": "next start",
"test": "jest"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@overture-stack/arranger-components": "^3.0.0-beta.37",
"@overture-stack/sqon-builder": "^1.1.0",
"@types/marked": "^5.0.2",
"@types/react-syntax-highlighter": "^15.5.13",
"axios": "^0.27.2",
"classnames": "^2.5.1",
"cryptr": "^6.3.0",
"http-proxy": "^1.18.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.18.1",
"marked": "^15.0.6",
"next": "^12.3.7",
"next-auth": "^4.23.1",
"next-compose-plugins": "^2.2.1",
"next-global-css": "1.3.1",
"next-transpile-modules": "^9.0.0",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-grid-system": "^7.1.1",
"react-syntax-highlighter": "^15.6.1",
"react-tippy": "^1.4.0",
"swagger-ui-dist": "^4.11.1",
"swagger-ui-react": "^4.11.1",
"url-join": "^5.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.21.0",
"@emotion/babel-plugin": "^11.9.2",
"@types/http-proxy": "^1.17.11",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.35",
"@types/react": "^17.0.83",
"@types/react-dom": "^17.0.26",
"@types/swagger-ui-react": "^4.18.3",
"@types/url-join": "^4.0.1",
"extra-watch-webpack-plugin": "^1.0.3",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"jest": "^27.5.1",
"prettier-plugin-organize-imports": "^4.1.0",
"ts-patch": "^2.1.0",
"typescript": "^4.7.2",
"typescript-transform-paths": "^3.4.6"
},
"prettier": {
"printWidth": 120,
"trailingComma": "all",
"semi": true,
"singleQuote": true,
"useTabs": true
},
"overrides": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@types/react": "^17.0.83",
"@types/react-dom": "^17.0.26",
"node-fetch": "3.2",
"graphiql": "1.5.17",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"private": true
}