-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.75 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.75 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "keepsimple-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development APP_ENV=local next dev -p 3005",
"build": "cross-env NODE_ENV=production APP_ENV=prod next build",
"start": "cross-env NODE_ENV=production APP_ENV=production yarn build && next start -p 4033",
"start:staging": "cross-env NODE_ENV=production APP_ENV=staging next start -p 3005",
"build:staging": "cross-env NODE_ENV=production APP_ENV=staging next build",
"test:e2e:staging": "start-server-and-test start:staging http://localhost:3005 cypress run",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test:chrome": "cypress run --browser chrome",
"test:firefox": "cypress run --browser firefox",
"test:edge": "cypress run --browser edge",
"test:all": "npm run test:chrome && npm run test:firefox && npm run test:edge",
"prepare": "husky install"
},
"dependencies": {
"classnames": "2.3.1",
"cookie": "0.6.0",
"cross-env": "7.0.3",
"cypress": "^14.5.2",
"cypress-social-logins": "^1.14.2",
"cypress-v10-preserve-cookie": "^1.2.1",
"date-fns": "2.30.0",
"dotenv": "^16.4.5",
"geoip-lite": "1.4.2",
"html2canvas": "^1.4.1",
"lodash.debounce": "4.0.8",
"lodash.unescape": "4.0.1",
"mixpanel-browser": "^2.65.0",
"next": "15.0.5",
"next-auth": "4.23.2",
"nodemailer": "^6.10.0",
"prettier": "^3.6.2",
"react": "19.0.3",
"react-beautiful-dnd": "13.1.1",
"react-confetti": "6.1.0",
"react-confetti-explosion": "2.1.2",
"react-dom": "19.0.3",
"react-ga4": "1.4.1",
"react-intersection-observer": "^9.16.0",
"react-loading-skeleton": "3.4.0",
"react-markdown": "8.0.3",
"react-slick": "0.29.0",
"react-tooltip": "5.27.1",
"rehype-raw": "6.1.1",
"remark-breaks": "3.0.2",
"sass": "1.32.8",
"slick-carousel": "1.8.1",
"uuid": "8.3.2"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix --cache"
],
"**/*.{js,jsx,ts,tsx,scss,json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "7.19.3",
"@cypress/react": "^9.0.1",
"@cypress/vite-dev-server": "^6.0.3",
"@types/amplitude-js": "8.16.2",
"@types/classnames": "2.2.11",
"@types/lodash.debounce": "4.0.7",
"@types/lodash.unescape": "4.0.7",
"@types/node": "^24.5.2",
"@types/react": "18.2.34",
"@types/react-dom": "18.2.14",
"@types/react-slick": "0.23.10",
"@types/swiper": "6.0.0",
"@types/uuid": "8.3.1",
"babel-loader": "8.2.5",
"eslint": "^9.32.0",
"eslint-config-next": "^15.4.4",
"husky": "^9.1.7",
"sass-loader": "13.1.0",
"start-server-and-test": "^2.0.12",
"ts-node": "^10.9.2",
"typescript": "5.2.2"
}
}