This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.66 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
{
"name": "dms-ui",
"version": "1.1.3",
"private": true,
"scripts": {
"clearNextTemp": "rm -rf ./.next",
"dev": "npm run clearNextTemp && next dev",
"build": "npm run clearNextTemp && next build",
"patchTS": "ts-patch install -s",
"prepare": "npm run patchTS",
"start": "next start",
"test": "jest"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@overture-stack/arranger-components": "^3.0.0-beta.32",
"axios": "^0.27.2",
"cryptr": "^6.3.0",
"http-proxy": "^1.18.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"next": "^12.1.6",
"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-tippy": "^1.4.0",
"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.62",
"@types/react-dom": "^17.0.20",
"@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",
"ts-patch": "^2.1.0",
"typescript": "^4.7.2",
"typescript-transform-paths": "^3.4.6"
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"semi": true,
"singleQuote": true,
"useTabs": true
},
"overrides": {
"node-fetch": "3.2",
"graphiql": "1.5.17",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"engines": {
"npm": ">=8.3.0"
}
}