-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.77 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
{
"name": "pokemon-app",
"version": "0.1.0",
"private": true,
"scripts": {
"db:reset": "",
"dev": "next dev",
"lint": "next lint",
"build": "next build",
"build:test": "npm run db:reset && cross-env NODE_ENV=test next build",
"start": "next start",
"start:test": "cross-env NODE_ENV=test next start",
"test": "jest --config=jest.config.js",
"test:ci": "jest --ci",
"cypress:open": "env-cmd -f .env.test.local cypress open",
"cypress:start": "start-server-and-test 'npm run start:test' 3000 'npm run cypress:open'",
"cypress:build": "npm run build:test && npm run cypress:start",
"cypress:run": "start-server-and-test 'npm run start:test' 3000 'env-cmd -f .env.test.local cypress run'"
},
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "20.4.5",
"@types/react": "18.2.17",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"cross-env": "^7.0.3",
"dominant-color": "^0.0.1",
"env-cmd": "^10.1.0",
"eslint": "8.45.0",
"eslint-config-next": "13.4.12",
"framer-motion": "^10.15.0",
"get-image-colors": "^4.0.1",
"lodash": "^4.17.21",
"next": "13.4.12",
"postcss": "8.4.27",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-fast-marquee": "^1.6.0",
"react-loader-spinner": "^5.4.5",
"react-palette": "^1.0.2",
"react-toastify": "^9.1.3",
"start-server-and-test": "^2.0.0",
"tailwindcss": "3.3.3",
"typescript": "5.1.6"
},
"devDependencies": {
"@testing-library/cypress": "^9.0.0",
"@types/testing-library__jest-dom": "^5.14.9",
"cypress": "^12.17.2",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2"
}
}