-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.26 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
{
"private": true,
"engines": {
"node": ">=14.16.1"
},
"scripts": {
"dev": "next dev",
"lint": "npm run lint:css && npm run lint:js",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"test:snapshot:update": "jest --ci -u",
"lint:css": "npx stylelint \"**/*.scss\" \"**/*.css\"",
"lint:js": "next lint"
},
"dependencies": {
"next": "latest",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@sparkbox/eslint-config-sparkbox": "^2.0.0",
"@sparkbox/stylelint-config-sparkbox": "^2.0.0",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.0.0",
"@testing-library/user-event": "13.2.1",
"babel-eslint": "^10.1.0",
"babel-jest": "27.0.6",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "latest",
"eslint-plugin-flowtype": "^6.1.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-testing-library": "4.11.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.0.6",
"react-test-renderer": "17.0.2",
"sass": "^1.42.1",
"stylelint": "^13.13.1"
}
}