-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
executable file
·43 lines (43 loc) · 1.13 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
{
"name": "nextjs-sequelize",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.1.0",
"next": "9.4.4",
"next-connect": "^0.7.1",
"nprogress": "^0.2.0",
"pg": "^7.0.0",
"pg-hstore": "^2.3.3",
"postcss-preset-env": "^6.7.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"sequelize": "^5.21.11",
"sqlite3": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"prettier": "^1.18.2"
}
}