forked from RafaelGoulartB/next-ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 834 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
{
"name": "next.js-ecommerce",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"knex:migrate": "knex migrate:latest",
"knex:seed": "knex seed:run"
},
"dependencies": {
"@apollo/client": "^3.1.3",
"@hapi/iron": "^6.0.0",
"apollo-server-micro": "^2.15.1",
"bcrypt": "^5.0.0",
"cookie": "^0.4.1",
"graphql": "^15.3.0",
"graphql-tools": "^6.0.12",
"knex": "^0.21.2",
"micro-cors": "^0.1.1",
"next": "^10.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^3.10.0",
"react-star-ratings": "^2.3.0",
"sqlite3": "^5.0.0",
"uuidv4": "^6.1.1",
"validator": "^13.1.1"
},
"devDependencies": {
"eslint": "^7.1.0",
"eslint-plugin-react": "^7.20.0"
}
}