-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.53 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
{
"name": "travel-app",
"version": "1.0.0",
"description": "a shiny application for finding speciality coffee and craft breweries",
"main": "index.js",
"author": "davidruvolo51",
"license": "MIT",
"dependencies": {
"autoprefixer": "^9.7.5",
"concurrently": "^6.0.1",
"cssnano": "^5.0.6",
"d3": "^5.15.1",
"modules": "^0.4.0"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"babel-preset-minify": "^0.5.1",
"postcss-modules": "^4.0.0",
"sass": "^1.32.8"
},
"scripts": {
"shiny": "Rscript -e \"shiny::runApp(launch.browser = FALSE, port = 8000)\"",
"sass": "parcel src/styles/styles.scss -d www/css --no-cache --no-source-maps --port 1111",
"sass_build": "parcel build src/styles/styles.scss -d www/css --no-cache --no-source-maps",
"sass_clean": "rm -rf www/css .sass-cache/",
"js_build": "babel www/js/index.js --out-file www/js/index.min.js --presets minify --no-comments",
"js_clean": "rm -rf www/js/index.min.js"
},
"postcss": {
"modules": false,
"plugins": {
"autoprefixer": {
"overrideBrowserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 9"
],
"flexbox": "no-2009"
},
"cssnano": {
"calc": true,
"discardComments": {
"removeAll": true
}
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/davidruvolo51/travel-app.git"
},
"bugs": {
"url": "https://github.com/davidruvolo51/travel-app/issues"
},
"keywords": [
"r",
"shiny",
"d3",
"sass"
]
}