-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 984 Bytes
/
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
{
"name": "hsk",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"analyze": "ANALYZE=true next build",
"gh-pages": "BASE_URL=/hsk next build && next export && touch out/.nojekyll && gh-pages -d out -t"
},
"dependencies": {
"bootstrap": "^4.4.1",
"lodash": "^4.17.15",
"next": "9.3.5",
"nextjs-progressbar": "^0.0.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-hook-form": "^5.5.3",
"react-hotkeys-hook": "^2.1.3",
"reactstrap": "^8.4.1",
"sass": "^1.26.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^9.3.5",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"gh-pages": "^2.2.0",
"sass-loader": "^8.0.2"
}
}