-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.11 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
{
"name": "next-template",
"author": "@croutonn",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint:script": "eslint . --ext ts --ext tsx --ext js",
"lint:style": "stylelint '**/*.{js,jsx,ts,tsx}'",
"lint-all": "yarn lint:script && yarn lint:style",
"fix:script": "yarn lint:script --fix",
"fix:style": "yarn lint:style --fix",
"fix:all": "yarn lint:fix && yarn lint:fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test-all": "yarn lint-all && yarn type-check && yarn test",
"build-sb": "build-storybook",
"start-sb": "start-storybook -p 6006"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint-all",
"yarn format"
]
},
"dependencies": {
"next": "^10.0.3",
"polished": "^4.0.5",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@croutonn/eslint-config": "^1.0.14",
"@storybook/addon-actions": "^6.1.10",
"@storybook/addon-essentials": "^6.1.10",
"@storybook/addon-links": "^6.1.10",
"@storybook/addons": "^6.1.10",
"@storybook/react": "^6.1.10",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.12",
"@types/react": "^16.14.2",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"eslint": "^7.12.1",
"husky": "^4.3.5",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.5.3",
"prettier": "^2.1.2",
"react-is": "^17.0.1",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.3.0",
"stylelint-config-standard": "^20.0.0",
"typescript": "^4.0.5"
}
}