-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"private": true,
"scripts": {
"dev": "next dev",
"lint": "next lint",
"build": "next build",
"build:dev": "env-cmd -f ./.env.development next build",
"start": "next start",
"test": "npm run test:unit && npm run test:e2e",
"test:watch": "jest --watch",
"test:unit": "jest",
"test:e2e": "npm run build:dev && start-server-and-test http://localhost:3000 cy:run",
"watch": "jest --watchAll",
"coverage": "jest --coverage",
"cy:run": "cypress run",
"env:dev": "vercel env pull .env.local --environment=development",
"env:prod": "vercel env pull .env.local --environment=production"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@notionhq/client": "^2.2.6",
"@reduxjs/toolkit": "^1.8.2",
"env-cmd": "^10.1.0",
"next": "latest",
"next-seo": "^5.4.0",
"notion-client": "^6.12.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-notion-x": "^6.12.10",
"react-redux": "^8.0.2",
"redux": "^4.2.0"
},
"devDependencies": {
"@faker-js/faker": "^7.1.0",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/react": "17.0.38",
"babel-jest": "27.4.5",
"cypress": "^10.0.3",
"eslint": "8.5.0",
"eslint-config-next": "latest",
"eslint-plugin-testing-library": "5.0.1",
"given2": "^2.1.7",
"jest": "27.4.5",
"prettier": "^3.1.0",
"start-server-and-test": "^1.14.0",
"typescript": "4.5.4"
}
}