forked from rome/tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 837 Bytes
/
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
{
"private": true,
"version": "0.0.2",
"//": "Look! No deps!",
"dependencies": {},
"///": "Only used for static type checking",
"devDependencies": {
"@types/node": "^12.0.8",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"typescript": "^3.7.0"
},
"prettier": {
"version": "1.19.1",
"trailingComma": "all",
"tabWidth": 2,
"singleQuote": true,
"bracketSpacing": false,
"jsxBracketSameLine": true
},
"rome": {
"root": true,
"bundler": {
"mode": "modern"
},
"lint": {
"ignore": [
"build",
"coverage",
"flow-typed",
"node_modules",
"core/static",
"resources",
"__generated__",
"__fixtures__",
"vendor",
"type-libs",
"lib/modules.js"
]
}
}
}