-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 KB
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": "sauteing",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"export": "next export",
"build": "next build",
"start": "next start",
"ci:lint": "eslint --ext .ts,.tsx --ignore-path .gitignore .",
"ci:format": "prettier --ignore-path .gitignore -l .",
"lint": "yarn run ci:lint --fix",
"format": "yarn run ci:format --write",
"lint-format-staged": "lint-staged",
"cy:open": "cypress open",
"cy:run": "cypress run",
"ci:test:cy": "start-server-and-test dev http://localhost:3000 cy:run"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.1",
"@chakra-ui/react": "^1.0.1",
"@emotion/react": "^11.1.1",
"@emotion/styled": "^11.0.0",
"framer-motion": "^2.9.4",
"global": "^4.4.0",
"next": "10.0.3",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@testing-library/cypress": "^7.0.2",
"@types/node": "^14.14.8",
"@types/react": "^16.9.56",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"cypress": "^6.0.1",
"eslint": "^7.13.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"start-server-and-test": "^1.11.6",
"typescript": "^4.0.5"
}
}