forked from rome/tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 884 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
43
44
{
"name": "rome-root",
"license": "MIT",
"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": "^1.19.1"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"singleQuote": true,
"bracketSpacing": false,
"jsxBracketSameLine": true
},
"rome": {
"root": true,
"bundler": {
"mode": "modern"
},
"lint": {
"enabled": true,
"ignore": [
"build",
"coverage",
"flow-typed",
"node_modules",
"core/static",
"resources",
"__rfixtures__",
"vendor",
"type-libs",
"lib/modules.js",
"prelude.ts"
]
}
}
}