-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.69 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.69 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
{
"name": "rosammen",
"version": "1.0.0",
"repository": "git@github.com:bardrotzer/rosammen.git",
"author": "Bård Røtzer <bard@kartoteket.as>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^9.4.10",
"copy-webpack-plugin": "^5.0.0",
"css-loader": "^2.1.0",
"dotenv-webpack": "^1.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"postcss-cli": "^6.1.2",
"postcss-loader": "^3.0.0",
"style-loader": "^0.23.1",
"svelte": "^2.16.1",
"svelte-loader": "^2.13.3",
"tailwindcss": "^0.7.4",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"scripts": {
"build": "yarn tailwind && yarn webpack --mode production --config ./webpack/webpack.config.js",
"testbuild": "yarn webpack --mode production --config ./webpack/webpack.config.js --display-error-details",
"dev": "yarn webpack-dev-server --mode development --config ./webpack/webpack.config.js",
"start": "sirv public",
"start:dev": "sirv public --dev",
"tailwind": "yarn tailwind:normalize && yarn tailwind:css",
"tailwind:normalize": "tailwind build src/css/normalize.css.src -c tailwind.config.js -o src/css/normalize.css",
"tailwind:css": "tailwind build src/css/tailwind.css.src -c tailwind.config.js -o src/css/tailwind.css"
},
"dependencies": {
"axios": "^0.18.0",
"cssnano": "^4.1.10",
"d3-array": "^2.0.3",
"d3-axis": "^1.0.12",
"d3-scale": "^3.0.0",
"d3-selection": "^1.4.0",
"d3-shape": "^1.3.5",
"d3-transition": "^1.2.0",
"leaflet": "^1.4.0",
"moment": "^2.24.0",
"svelte-router": "^2.0.0-beta.1"
}
}