-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.79 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
{
"name": "bubbleql",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test-component": "jest --env=jsdom __tests__/components/*"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@material-ui/styles": "^4.11.4",
"@mui/icons-material": "^5.3.0",
"@mui/material": "^5.2.4",
"@mui/x-data-grid": "^5.2.2",
"@rehooks/local-storage": "^2.4.3",
"@types/lodash": "^4.14.178",
"@vercel/fetch": "^6.1.1",
"firebase": "^9.6.3",
"got": "^11.8.3",
"lodash": "^4.17.21",
"next": "12.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-table": "^7.7.0",
"swr": "^1.0.1"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@testing-library/jest-dom": "^5.16.0",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.3",
"@types/node": "16.11.6",
"@types/react": "17.0.34",
"@types/react-table": "^7.7.8",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.3.1",
"enzyme": "^3.11.0",
"eslint": "7.32.0",
"eslint-config-next": "12.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-tailwindcss": "^1.17.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.3",
"jest-fetch-mock": "^3.0.3",
"next-test-api-route-handler": "^2.3.3",
"nock": "^13.2.1",
"node-mocks-http": "^1.11.0",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"tailwindcss": "^2.2.19",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "4.4.4",
"whatwg-fetch": "^3.6.2"
}
}