-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "stackreview",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vercel env pull .env.local && next dev",
"build": "next build",
"start": "next start",
"lint": "standard {src,pages}/ | snazzy",
"format": "prettier-standard --format"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/node_modules/**"
],
"global": [
"fetch"
]
},
"dependencies": {
"@auth0/auth0-react": "^1.0.0",
"@hapi/joi": "^17.1.1",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@zeit/next-sass": "^1.0.1",
"ace-builds": "^1.4.12",
"lodash": "^4.17.19",
"mongodb": "^3.6.0",
"next": "9.5.1",
"node-sass": "^4.14.1",
"react": "16.13.1",
"react-ace": "^9.1.2",
"react-dom": "16.13.1",
"react-highlight": "^0.12.0",
"react-hook-form": "^6.3.1",
"statuses": "^2.0.0",
"swr": "^0.3.0",
"yup": "^0.29.3"
},
"devDependencies": {
"prettier-standard": "^16.4.1",
"snazzy": "^8.0.0",
"swagger-ui-dist": "^3.31.1",
"yaml-lint": "^1.2.4"
}
}