-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "dev-summit-2020-building-your-own-widget",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/jcfranco/dev-summit-2020-building-your-own-widget.git"
},
"bugs": {
"url": "https://github.com/jcfranco/dev-summit-2020-building-your-own-widget/issues"
},
"homepage": "https://github.com/jcfranco/dev-summit-2020-building-your-own-widget#readme",
"dependencies": {
"@types/arcgis-js-api": "~4.14.0",
"esri-reveal.js-templates": "git+https://github.com/esri/reveal.js.git#153be4b866aa342b2ffe9a6c9401341bdb4ccd54"
},
"devDependencies": {
"dojo-typings": "~1.11.9",
"grunt": "~1.0.4",
"grunt-sass": "~3.1.0",
"prettier": "~1.19.1",
"typescript": "~3.8.3"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"printWidth": 120,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false,
"overrides": [
{
"files": "*.tsx",
"options": {
"printWidth": 100
}
}
]
}
}