-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.71 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
{
"name": "aditya-mitra-portfolio",
"version": "2.3.9",
"private": true,
"scripts": {
"dev": "next dev --port=5",
"build": "next build",
"start": "next start",
"export": "next export",
"format": "prettier --write .",
"serve": "serve -l 5004 portfolio",
"cyopen": "./node_modules/.bin/cypress open",
"testl": "start-server-and-test serve http://localhost:5004 cyopen",
"cyrun": "./node_modules/.bin/cypress run --env failOnSnapshotDiff=false",
"cyrun:chrome": "./node_modules/.bin/cypress run --browser chrome --env failOnSnapshotDiff=false",
"cyrun:update": "./node_modules/.bin/cypress run --env updateSnapshots=true",
"ci:build": "cross-env NODE_ENV=production && next build && next export -o portfolio",
"ci:test": "start-server-and-test serve http://localhost:5004 cyrun",
"ci:test:chrome": "start-server-and-test serve http://localhost:5004 cyrun:chrome"
},
"dependencies": {
"@chakra-ui/react": "^1.3.4",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"framer-motion": "^3.10.6",
"next": "^10.0.9",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0",
"styled-jsx": "^3.3.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.0.9",
"cross-env": "^7.0.3",
"cypress": "^4.12.1",
"cypress-image-snapshot": "^4.0.1",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"prettier": "^2.2.1",
"serve": "^11.3.2",
"start-server-and-test": "^1.12.1"
},
"engines": {
"node": ">=14.0.0 <=14.x.x",
"npm": "^7.0.0"
}
}