-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.12 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
59
60
{
"name": "pin-pics",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:migrate": "dotenv -e .env.production.local -- yarn sequelize db:migrate --env production --config ./server/db/config/config.json --migrations-path ./server/db/migrations --models-path ./server/db/models",
"create:migration": "yarn sequelize migration:generate --config ./server/db/config/config.json --migrations-path ./server/db/migrations --models-path ./sever/db/models",
"db:migrate:undo": "yarn sequelize db:migrate:undo --config ./server/db/config/config.json --migrations-path ./server/db/migrations --models-path ./server/db/models",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "http://www.github.com/idahogurl/qik-poll"
},
"author": "Rebecca Vest",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@next-auth/sequelize-adapter": "^1.0.7",
"@popperjs/core": "^2.11.6",
"bootstrap": "^5.2.3",
"classnames": "2.3.2",
"formik": "^2.2.9",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"masonry-layout": "^4.2.2",
"next": "13.1.0",
"next-auth": "^4.20.1",
"next-urql": "^4.0.2",
"pg": "^8.8.0",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-bootstrap": "^2.7.0",
"react-dom": "18.2.0",
"react-is": "^18.2.0",
"sequelize-cockroachdb": "^6.0.5",
"urql": "^3.0.3"
},
"devDependencies": {
"dotenv-cli": "^6.0.0",
"eslint": "8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "13.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.3.0",
"sequelize": "^6.29.0",
"sequelize-auto": "^0.8.8",
"sequelize-cli": "^6.5.2",
"sequelize-migration-generator": "^0.1.0"
}
}