forked from Kowalski-Group/rfp2204-blue-ocean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.58 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --ignore-path .gitignore \"**/*.{js,jsx,ts,tsx,json,md,css}\"",
"format": "pnpm prettier --write",
"check-format": "pnpm prettier --list-different",
"validate": "npm-run-all --parallel lint build",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cypress:headless",
"prepare": "husky install"
},
"dependencies": {
"@auth0/nextjs-auth0": "^1.9.1",
"axios": "^0.27.2",
"face-api.js": "^0.22.2",
"framer-motion": "^6.3.16",
"mongodb": "^4.7.0",
"next": "latest",
"prettier": "^2.7.1",
"prettier-cli": "^0.1.0",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-confetti": "^6.1.0",
"react-dom": "17.0.2",
"react-use": "^17.4.0",
"react-webcam": "^7.0.1",
"react-youtube": "^9.0.2",
"typescript": "^4.7.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.6",
"autoprefixer": "^10.4.7",
"cypress": "8.2.0",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"start-server-and-test": "1.13.1",
"tailwindcss": "^3.1.4"
}
}