forked from nadvolod/js-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 879 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
{
"name": "portfolio_nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"test:visual": "npx happo-e2e -- cypress run --spec 'cypress/integration/visual.spec.js'",
"test:jest": "jest",
"test:lighthouse": "cypress run --spec 'homepage.spec.js'",
"happo": "happo",
"happo-ci-github-actions": "happo-ci-github-actions"
},
"dependencies": {
"cypress": "^9.5.0",
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"styled-components": "^5.3.0",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@cypress-audit/lighthouse": "^1.2.0",
"cypress-audit": "^1.1.0",
"happo-cypress": "^3.0.1",
"happo-e2e": "^1.0.3",
"happo.io": "^7.0.2",
"jest": "^27.5.1"
}
}