-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.13 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
56
57
58
59
60
61
62
{
"name": "runik-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -- -p 8080",
"build": "next build",
"cypress:open": "cypress open -- --project tests",
"cypress:run": "cross-env NODE_ENV=test cypress run -- --spec tests/cypress/integration/runik/**/*.spec.js",
"postbuild": "cross-env next-sitemap --config next-sitemap.config.js",
"prepare": "husky install",
"start": "next start",
"next:lint": "next lint",
"lint": "eslint \"**/*.{js,ts}\" --quiet --fix",
"test": "cross-env NODE_ENV=test npm run test:e2e && npm run test:unit && npm run test:integration",
"test:e2e": "npm run cypress:run",
"test:unit": "jest -i --colors --verbose --coverage --detectOpenHandles --passWithNoTests tests/spec/unit",
"test:integration": "jest -i --colors --verbose --coverage --detectOpenHandles --passWithNoTests tests/spec/integration"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"@tailwindcss/aspect-ratio": "^0.3.0",
"@tailwindcss/forms": "^0.3.4",
"@tailwindcss/line-clamp": "^0.2.2",
"@tailwindcss/typography": "^0.4.1",
"aws-sdk": "^2.1038.0",
"babel-jest": "^27.3.1",
"dotenv": "^10.0.0",
"framer-motion": "^4.1.17",
"fuse.js": "^6.4.6",
"mongoose": "^6.0.13",
"next": "^12.0.2",
"next-sitemap": "^1.6.192",
"react": "17.0.2",
"react-aria": "^3.10.0",
"react-dom": "17.0.2",
"react-helmet": "^6.1.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
},
"devDependencies": {
"autoprefixer": "^10.3.7",
"cross-env": "^7.0.3",
"cypress": "^8.6.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"tailwindcss": "^2.2.17"
}
}