-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.09 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.09 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
{
"name": "mapset-website",
"version": "0.1.0",
"dependencies": {
"@formatjs/intl-localematcher": "^0.4.0",
"@sentry/nextjs": "^7.77.0",
"autoprefixer": "10.4.14",
"lodash": "4.17.21",
"negotiator": "0.6.3",
"next": "14.2.30",
"react": "18.2.0",
"react-dom": "18.2.0",
"remarkable": "^2.0.1",
"rosetta": "^1.1.0",
"sass": "^1.64.2",
"sharp": "^0.32.6",
"tailwindcss": "3.3.3"
},
"devDependencies": {
"@types/lodash": "4.14.197",
"@types/node": "20.4.7",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"@types/remarkable": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"cypress": "^13.2.0",
"eslint": "8.46.0",
"eslint-config-next": "13.4.12",
"eslint-config-prettier": "^8.10.0",
"fixpack": "^4.0.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.6.2",
"lint-staged": "^13.2.3",
"next-sitemap": "^4.1.8",
"postcss": "8.4.31",
"prettier": "^3.0.1",
"sort-json": "^2.0.1",
"start-server-and-test": "^2.0.0",
"stylelint": "^15.10.2",
"stylelint-config-tailwindcss": "^0.0.7",
"stylelint-scss": "^5.0.1",
"typescript": "5.1.6"
},
"scripts": {
"build": "next build",
"cy:open": "cypress open",
"cy:test": "start-server-and-test start:http http://localhost:3000 'cypress run --browser chrome'",
"cy:test:mail": "yarn build && start-server-and-test start http://localhost:3000 'cypress run --spec ./cypress/e2e/ContactForm.cy.ts --browser chrome'",
"dev": "next dev",
"format": "prettier --write 'src/**/*.{js,ts,tsx,json}' && eslint 'src/**/*.{js,ts,tsx,json}' --fix && stylelint 'src/**/*.css' 'src/**/*.scss' --fix --allow-empty-input",
"lint": "next lint",
"postbuild": "next-sitemap",
"prepare": "is-ci || husky install",
"start": "next start",
"test": "jest --passWithNoTests",
"up": "yarn upgrade-interactive --latest"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all",
"not ie <= 11",
"not android < 5"
],
"private": true
}