-
Notifications
You must be signed in to change notification settings - Fork 2
/
template.json
68 lines (68 loc) · 1.87 KB
/
template.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
{
"package": {
"scripts": {
"start": "rescripts start",
"build": "rescripts build",
"test": "rescripts test",
"lint:fix": "standard --fix | snazzy",
"storybook": "start-storybook -p 9009 -s storybook-public",
"storybook:build": "build-storybook -s storybook-public"
},
"dependencies": {
"@rescripts/cli": "0.0.14",
"@rescripts/rescript-env": "0.0.12",
"@storybook/addon-actions": "5.3.19",
"@storybook/addon-links": "5.3.19",
"@storybook/addon-storyshots": "5.3.19",
"@storybook/addons": "5.3.19",
"@storybook/preset-create-react-app": "3.0.0",
"@storybook/react": "5.3.19",
"@testing-library/jest-dom": "5.9.0",
"@testing-library/react": "10.1.0",
"@testing-library/user-event": "11.0.0",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-react": "9.2.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-only-warn": "1.0.2",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-standard": "4.0.1",
"polished": "3.6.4",
"react-test-renderer": "16.13.1",
"snazzy": "8.0.0",
"standard": "14.3.4",
"styled-components": "5.1.1"
},
"eslintConfig": {
"extends": [
"react-app",
"standard",
"standard-react"
],
"rules": {
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}]
},
"plugins": [
"only-warn"
]
},
"rescripts": [
"env"
],
"standard": {
"parser": "babel-eslint",
"globals": [
"fetch",
"test",
"expect"
]
}
}
}