-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.81 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "arcgis-configurable-app",
"version": "1.1.0",
"description": "Demo configurable map using TypeScript with ArcGIS API 4 for JavaScript",
"scripts": {
"start": "npm run dev",
"dev": " rollup -cw --environment BUILD:development",
"build": "rollup -c --environment BUILD:production",
"up:dev": "docker-compose -f docker-compose.development.yml up -d",
"down:dev": "docker-compose -f docker-compose.development.yml down",
"lint": "eslint ./src/**/*.{ts,tsx} --quiet --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/internationalmapping/arcgis-configurable-app.git"
},
"author": "International Mapping Associates, Inc.",
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"@esri/calcite-components": "^1.0.0-beta.98",
"@esri/configurable-app-components": "^1.6.7",
"@rollup/plugin-eslint": "^9.0.1",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/arcgis-js-api": "^4.25.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"postcss-css-variables": "^0.18.0",
"postcss-nested": "^6.0.0",
"prettier": "^2.7.1",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^2.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-workbox": "^6.2.0",
"templates-common-library": "^0.0.126",
"typescript": "^4.9.3"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-unused-vars": 0,
"max-len": [
"warn",
{
"code": 180,
"ignoreComments": true
}
],
"prettier/prettier": [
"error",
{
"printWidth": 180,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"endOfLine": "auto"
}
]
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"plugins": [
"prettier",
"@typescript-eslint"
]
}
}