-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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
{
"private": true,
"name": "todomvc-subscriptions",
"version": "1.0.0",
"author": "Michael Hsu <evenchange4@gmail.com>",
"license": "MIT",
"scripts": {
"clean":
"rm -rf node_modules && rm -rf ./packages/*/node_modules && rm -rf ./packages/*/.DS_Store && rm -rf ./packages/*/*.log",
"postinstall": "lerna link",
"start": "lerna run dev --stream",
"flow": "flow",
"eslint": "eslint ./",
"format": "prettier --write 'packages/**/*.{js,json}' '*.json' '*.md'",
"release": "lerna publish",
"changelog":
"github-changes -o evenchange4 -r todomvc-subscriptions -b master -f ./CHANGELOG.md --order-semver --use-commit-body"
},
"workspaces": ["packages/*"],
"devDependencies": {
"babel-eslint": "8.1.2",
"codecov": "3.0.0",
"eslint": "4.14.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-flowtype": "2.40.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jest": "21.5.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.4.0",
"eslint-plugin-react": "7.5.1",
"flow-bin": "0.61.0",
"github-changes": "1.1.1",
"lerna": "2.5.1",
"prettier": "1.9.2"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb",
"plugin:flowtype/recommended",
"plugin:jest/recommended",
"prettier",
"prettier/react",
"prettier/flowtype"
],
"plugins": ["prettier", "jest", "flowtype"],
"env": {
"jest/globals": true
},
"rules": {
"prettier/prettier": "error",
"import/no-named-as-default": 0,
"react/jsx-filename-extension": [
1,
{
"extensions": [".js"]
}
]
}
}
}