-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.98 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
{
"name": "platform",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_ENV=development node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"test": "echo no tests yet",
"codecov": "echo no codecov",
"lint": "eslint . --ext .tsx --ext .ts && tsc -b tsconfig.json",
"lint-fix": "eslint . --ext .tsx --ext .ts --fix"
},
"dependencies": {
"@pennlabs/rest-hooks": "^0.1.8",
"@sentry/browser": "^6.16.1",
"@sentry/node": "^6.16.1",
"@types/lodash": "^4.14.178",
"@types/styled-components": "^5.1.18",
"babel-plugin-styled-components": "^2.0.2",
"babel-preset-next": "^1.4.0",
"bulma": "^0.9.3",
"express": "^4.17.1",
"formik": "^2.2.9",
"http-proxy-middleware": "^2.0.1",
"libphonenumber-js": "^1.9.44",
"lodash": "^4.17.21",
"next": "12.0.7",
"react": "17.0.2",
"react-bulma-components": "^4.0.7",
"react-code-input": "^3.10.1",
"react-dom": "17.0.2",
"react-select": "^5.2.1",
"react-toast-notifications": "^2.5.1",
"styled-components": "^5.3.3",
"swr": "^0.3.11",
"typescript": "^4.5.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@types/node": "^17.0.0",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1"
}
}