-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.59 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "next-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 5000",
"build": "next build",
"export": "next export",
"start": "NODE_ENV=production node server.js",
"lint:js": "eslint --ignore-path .eslintignore .",
"lint:style": "stylelint **/*.{scss,css} --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:style",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook",
"test": "jest",
"test:watch": "jest --watch",
"check-types": "tsc --noEmit"
},
"dependencies": {
"@babel/core": "^7.17.9",
"@storybook/addon-a11y": "^6.4.22",
"@storybook/addon-actions": "^6.4.21",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.4.20",
"@storybook/manager-webpack5": "^6.4.21",
"@storybook/react": "^6.4.20",
"@types/body-parser": "*",
"@types/express": "^4.17.13",
"@types/node": "^15.14.0",
"@types/react": "^17.0.43",
"babel-loader": "^8.2.5",
"classnames": "^2.3.1",
"compression": "^1.7.4",
"express": "^4.18.0",
"find-cache-dir": "^3.3.2",
"next": "11.1.3",
"postcss": "^8.4.12",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"storybook-css-modules-preset": "^1.1.1",
"typescript": "^4.6.4",
"webpack": "^5.72.0"
},
"engines": {
"node": ">=16 <17",
"npm": ">=7 <8"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^3.9.2",
"@testing-library/react": "^12.1.5",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^27.4.4",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"frontmatter-markdown-loader": "^3.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.21.0",
"ts-node": "^10.7.0",
"typescript-eslint": "*"
}
}