-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "star-wars-wiki",
"version": "2.1.0",
"private": true,
"engines": {
"node": ">=16.12.0"
},
"scripts": {
"build": "next build",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"dev": "next dev",
"lint": "eslint ./pages ./components",
"lint:ci": "yarn tsc && yarn lint",
"release:major": "release major",
"release:minor": "release minor",
"release:patch": "release patch",
"start": "next start",
"start:ci": "yarn start & wait-on http://localhost:3000",
"tsc": "tsc --project ./tsconfig.json",
"tsc:watch": "yarn tsc --watch"
},
"dependencies": {
"@chakra-ui/icons": "1.0.14",
"@chakra-ui/react": "1.6.5",
"@chakra-ui/system": "1.7.1",
"@emotion/react": "11.4.0",
"@emotion/styled": "11.3.0",
"axios": "0.27.2",
"framer-motion": "4.1.17",
"mongodb": "4.0.0",
"next": "12.1.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "4.2.0"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@drewster/eslint-config": "3.1.1",
"@testing-library/cypress": "7.0.6",
"@types/axios": "0.14.0",
"@types/node": "16.3.3",
"@types/nodemailer": "6.4.4",
"@types/react": "17.0.14",
"@types/react-dom": "17.0.9",
"@types/webpack": "5.28.0",
"cypress": "7.7.0",
"eslint": "7.31.0",
"eslint-config-next": "11.1.0",
"release": "6.3.0",
"typescript": "4.2.3",
"wait-on": "6.0.0"
}
}