-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "accessible-components",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "check-node-version --package",
"dev": "next dev",
"build": "next build",
"export": "next build && next export",
"start": "next start",
"lint:js": "next lint",
"lint:scss": "stylelint '**/*.scss'",
"lint": "run-s lint:js lint:scss",
"test": "jest",
"test:e2e": "cypress run --e2e",
"test:e2e:open": "cypress open --e2e",
"test:watch": "npm run test -- --watchAll",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.13.10",
"@codesandbox/sandpack-themes": "^2.0.21",
"airtable": "^0.12.2",
"check-node-version": "^4.2.1",
"cypress": "^13.8.1",
"cypress-axe": "^1.5.0",
"cypress-each": "^1.14.0",
"isomorphic-dompurify": "^2.9.0",
"marked": "^12.0.2",
"next": "^14.2.3",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^14.2.2",
"axe-core": "^4.9.0",
"check-node-version": "^4.2.1",
"dotenv": "^16.4.5",
"eslint": "8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"prettier": "3.2.5",
"sass": "^1.76.0",
"stylelint": "^16.5.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.1.0"
},
"engines": {
"node": ">=20"
}
}