-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "next-js-cart",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@hapi/iron": "^6.0.0",
"@prisma/client": "^2.0.0-beta.1",
"@sendgrid/mail": "^7.1.1",
"cookie": "^0.4.0",
"dotenv": "^8.2.0",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"next": "^9.3.4",
"next-connect": "^0.6.6",
"next-cookies": "^2.0.3",
"nprogress": "^0.2.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.0.1",
"swr": "^0.2.0",
"uuid": "^7.0.3"
},
"devDependencies": {
"@prisma/cli": "^2.0.0-beta.5",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.2",
"@testing-library/react-hooks": "^3.2.1",
"babel-plugin-styled-components": "^1.10.7",
"faker": "^4.1.0",
"jest": "^25.3.0",
"jest-styled-components": "^7.0.2",
"react-test-renderer": "^16.13.1"
}
}