This repository was archived by the owner on Sep 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.88 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.88 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@datawrapper/frontend",
"version": "2.0.0",
"description": "The new Datawrapper frontend service using hapi",
"scripts": {
"format": "prettier --write 'src/**/*.{js,svelte}'",
"lint": "eslint 'src/**/*.{js,svelte}' && prettier --check 'src/**/*.{js,svelte}'",
"prepare": "husky install",
"build:css": "node-sass --omit-source-map-url src/styles/index.scss static/datawrapper.css",
"watch:css": "npm run build:css -- --watch"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@datawrapper/chart-core": "^8.41.1",
"@datawrapper/icons": "^1.4.0",
"@datawrapper/locales": "^1.2.6",
"@datawrapper/orm": "^3.25.0",
"@datawrapper/schemas": "^1.12.1",
"@datawrapper/service-utils": "^1.2.2",
"@datawrapper/shared": "^0.35.0",
"@hapi/bell": "^12.2.0",
"@hapi/catbox-memory": "^5.0.1",
"@hapi/catbox-redis": "^6.0.2",
"@hapi/hapi": "^20.1.3",
"@hapi/hoek": "^9.2.0",
"@hapi/inert": "^6.0.3",
"@hapi/vision": "^6.1.0",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.3.4",
"async": "^3.2.0",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"dayjs": "^1.10.4",
"ejs": "^3.1.6",
"eslint-plugin-svelte3": "^3.0.0",
"fs-extra": "^10.0.0",
"got": "^11.5.2",
"hapi-dev-errors": "^4.0.0",
"hapi-pino": "^8.3.0",
"hapi-plugin-websocket": "^2.3.2",
"joi": "^17.4.0",
"jsesc": "^3.0.1",
"less": "^4.1.1",
"lodash": "^4.17.20",
"pug": "^3.0.1",
"requirejs": "^2.3.6",
"rollup": "^2.51.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.31.2",
"svelte-preprocess-less": "^0.4.0",
"tempfile": "^3.0.0",
"underscore": "^1.12.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"bulma": "^0.9.2",
"eslint": "^7.28.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"node-sass": "^6.0.0",
"prettier": "^2.3.1",
"prettier-plugin-svelte": "^2.1.0"
},
"nodemonConfig": {
"ignore": [
"d3*/src/*",
"d3*/static/*",
"d3*/tests/*",
"locator-maps/src/*",
"locator-maps/static/*",
"locator-maps/tests/*",
"tables/src/*",
"tables/static/*",
"tables/tests/*",
"team-*/src/*",
"team-*/static/*",
"admin-*/src/*",
"admin-*/static/*",
"visualization*/src/*",
"visualization*/static/*",
"visualization*/tests/*",
"export-*/src/*",
"export-*/static/*",
"export-*/tests/*",
"external-data/src/*",
"external-data/static/*",
"simple-maps/src/*",
"simple-maps/static/*",
"image-publishing/src/*",
"image-publishing/static/*",
"subscriptions/src/*",
"subscriptions/static/*",
"social-sharing/src/*",
"social-sharing/static/*",
"chart-locale-select/src/*",
"chart-locale-select/static/*",
"themes/static/*"
]
},
"eslintIgnore": [
"src/node_modules"
],
"prettier": {
"arrowParens": "avoid",
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,svelte}": [
"prettier --write",
"eslint",
"prettier --check"
],
"*.js": "eslint --cache --fix"
}
}