-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.15 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
{
"name": "big-dipper-default-interface",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon",
"build": "npm run build:next && npm run build:server",
"build:server": "tsc --project tsconfig.server.json",
"build:next": "next build",
"start": "ENV=production node dist/index.js",
"type-check": "tsc",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"test": "NODE_ENV=test jest"
},
"dependencies": {
"@apollo/client": "^3.1.5",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.10.0",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.3.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dotenv-defaults": "^2.0.1",
"express": "^4.17.1",
"graphql": "^15.3.0",
"next": "^10.0.7",
"next-i18next": "^6.0.2",
"next-seo": "^4.19.0",
"ramda": "^0.27.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-i18next": "^11.7.2",
"react-scrollspy": "^3.4.3",
"react-sticky-box": "^0.9.3",
"react-toastify": "^7.0.3",
"validator": "^13.5.2"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@testing-library/react": "^11.0.2",
"@testing-library/react-hooks": "^3.4.1",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"@types/react": "^16.9.49",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-jest": "^26.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"jest": "^26.4.2",
"jest-svg-transformer": "^1.0.0",
"jest-watch-typeahead": "^0.6.1",
"nodemon": "^2.0.4",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"resolutions": {
"babel-plugin-inline-react-svg/*/js-yaml": "3.13.1"
}
}