-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 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
69
70
71
72
73
{
"name": "with-typescript",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"build-storybook": "build-storybook -s public",
"precommit": "lint-staged",
"lint": "eslint .",
"lint:fix": "eslint . --fix && prettier --write .",
"storybook": "start-storybook -s ./public -p 6006",
"deploy": "storybook-to-ghpages"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"yarn prettier",
"yarn lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -c ./lint-staged.config.js",
"prepare-commit-msg": "./scripts/add_issue_number_into_commit.sh $HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"axios": "^0.21.1",
"eslint": "^7.23.0",
"next": "latest",
"next-images": "^1.7.0",
"react": "^16.12.0",
"react-cookie": "^4.0.3",
"react-dom": "^16.12.0",
"react-spinners": "^0.10.6",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@storybook/addon-actions": "^6.1.20",
"@storybook/addon-essentials": "^6.1.20",
"@storybook/addon-links": "^6.1.20",
"@storybook/react": "^6.1.20",
"@storybook/storybook-deployer": "^2.8.7",
"@svgr/webpack": "^5.5.0",
"@types/node": "^12.12.21",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/parser": "^4.19.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"tsconfig-paths-webpack-plugin": "^3.4.1",
"typescript": "^4.2.3"
},
"license": "MIT"
}