-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.64 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
{
"name": "nextjs-scaffold",
"version": "1.0.0",
"scripts": {
"analyze": "ANALYZE=true next build",
"build": "next build",
"build-storybook": "build-storybook",
"dev": "next dev",
"dev-debug": "NODE_OPTIONS='--inspect' next dev",
"export": "next build && next export",
"lint:fix": "eslint . --ignore-path .gitignore --ext .js,.ts,.tsx --fix",
"prettier:check": "prettier --ignore-path .gitignore --check '**/*.{js,ts,tsx,css,html}'",
"prettier:fix": "prettier --ignore-path .gitignore --write '**/*.{js,ts,tsx,css,html}'",
"prepare": "husky install",
"start": "next start",
"storybook": "start-storybook --ci -s ./public -p 6006",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"test:local": "jest --silent",
"test:e2e": "playwright test e2etests/"
},
"dependencies": {
"next": "12.0.4",
"react": "17.0.2",
"react-colorful": "5.5.1",
"react-dom": "17.0.2",
"tslib": "2.3.1"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/plugin-proposal-partial-application": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@playwright/test": "1.16.3",
"@storybook/addon-a11y": "6.3.12",
"@storybook/addon-actions": "6.3.12",
"@storybook/addon-essentials": "6.3.12",
"@storybook/addon-links": "6.3.12",
"@storybook/builder-webpack5": "6.3.12",
"@storybook/manager-webpack5": "6.3.12",
"@storybook/react": "6.3.12",
"@testing-library/jest-dom": "5.15.1",
"@testing-library/react": "12.1.2",
"@types/ramda": "0.27.50",
"@types/react": "17.0.36",
"@types/react-dom": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"babel-jest": "27.3.1",
"babel-loader": "8.2.3",
"eslint": "7.32.0",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "7.0.4",
"identity-obj-proxy": "3.0.0",
"jest": "27.3.1",
"prettier": "2.4.1",
"ramda": "0.27.1",
"storybook-addon-pseudo-states": "1.0.0",
"stylelint": "14.1.0",
"stylelint-config-css-modules": "2.3.0",
"stylelint-config-standard": "24.0.0",
"ts-jest": "27.0.7",
"ts-node": "10.4.0",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.5.2",
"webpack-bundle-analyzer": "4.5.0"
}
}