-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.95 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
{
"name": "otp-admin-ui",
"version": "1.0.0",
"main": "index.js",
"engines": { "node": "18.x" },
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next",
"deploy": "vercel",
"lint": "yarn lint-types && yarn lint-code",
"lint-code": "tsdx lint components pages util --quiet",
"lint-docs": "documentation lint {components,pages,util}/**/*.js",
"lint-types": "yarn tsc",
"predev": "yarn",
"e2e-test": "cp -r __tests__/e2e/env.test .env.build && yarn jest __tests__/e2e/"
},
"dependencies": {
"@auth0/auth0-react": "^1.0.0",
"bootstrap": "^4.5.0",
"clone": "^2.1.2",
"dotenv": "^8.2.0",
"formik": "^2.1.5",
"isomorphic-fetch": "^3.0.0",
"isomorphic-unfetch": "^3.0.0",
"moment": "^2.29.2",
"next": "^12.1.0",
"qs": "^6.9.4",
"react": "^17.0.2",
"react-bootstrap": "^1.1.1",
"react-dom": "^17.0.2",
"react-markdown": "^4.3.1",
"react-select": "^3.1.0",
"react-vis": "^1.11.7",
"styled-components": "^5.0.1",
"styled-icons": "^10.2.1",
"swr": "^0.3.2",
"yup": "^0.29.3"
},
"devDependencies": {
"@types/auth0": "^2.34.13",
"@types/clone": "^2.1.1",
"@types/expect-puppeteer": "^4.4.7",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest-environment-puppeteer": "^5.0.0",
"@types/node": "^17.0.16",
"@types/puppeteer": "^5.4.4",
"@types/qs": "^6.9.7",
"@types/react": "^17.0.39",
"@types/react-select": "^5.0.1",
"@types/react-vis": "^1.11.10",
"@types/yup": "^0.29.13",
"documentation": "^13.1.0",
"jest": "^27.5.1",
"jest-puppeteer": "^6.1.0",
"puppeteer": "^13.4.0",
"raw-loader": "^4.0.0",
"semantic-release": "^17.4.3",
"tsdx": "https://github.com/ibi-group/tsdx#v0.15.0",
"typescript": "^4.5.5"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
}
}