This repository was archived by the owner on Mar 22, 2023. It is now read-only.
forked from tripikad/trip2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.73 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.73 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
{
"version": "1.1.0",
"name": "trip2",
"private": true,
"scripts": {
"build": "cross-env NODE_ENV=production webpack --mode=production --hide-modules",
"devbuild": "cross-env NODE_ENV=development webpack --mode=development --hide-modules",
"watch": "cross-env NODE_ENV=development webpack --mode=development --hide-modules --watch",
"live": "browser-sync start --proxy \"$(grep FULL_BASE_URL .env | cut -d '=' -f2)\" --files=\"(app|config|database|resources|routes|storage|tests)/**/*.(php|js|css|vue|svg)\" --no-ui --no-notify --reload-delay=\"1000\"",
"dev": "npm-run-all -p watch live",
"test": "./vendor/bin/phpunit && php artisan dusk",
"prettier": "prettier \"{app,bootstrap,config,database,resources,routes,scripts,tests}/**/*.{js,vue,php,css}\" --write",
"styles": "./scripts/generate_styles.sh",
"data": "./scripts/get_data.sh && ./scripts/generate_data.sh"
},
"dependencies": {
"@mathieustan/vue-datepicker": "^0.2.8",
"@prettier/plugin-php": "^0.11.2",
"axios": "^0.18.0",
"codemirror": "^5.58.2",
"d3-array": "^1.2.1",
"d3-geo": "^1.12.1",
"d3-scale": "^1.0.6",
"d3-shape": "^1.3.7",
"date-fns": "^2.16.1",
"dropzone": "^5.7.2",
"lodash.unescape": "^4.0.1",
"moment": "^2.29.1",
"pell": "^1.0.4",
"sass": "^1.49.9",
"to-markdown": "^3.1.0",
"turndown": "^5.0.1",
"vue": "^2.6.12",
"vue-clickaway": "^2.1.0",
"vue-cookie": "^1.1.4",
"vue-focus": "^2.1.0",
"vue-multiselect": "2.0.0-beta.13",
"vue-slider-component": "^3.2.10",
"webpack-manifest-plugin": "^2.2.0"
},
"devDependencies": {
"@turf/helpers": "^6.1.4",
"@turf/intersect": "^6.1.3",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-1": "^6.24.1",
"babyparse": "^0.4.6",
"browser-sync": "^2.26.13",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"eslint": "^4.19.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-vue": "^4.5.0",
"file-loader": "^1.1.11",
"mini-css-extract-plugin": "^0.4.0",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"postcss-discard-comments": "^2.0.4",
"postcss-font-magician": "^2.3.1",
"postcss-if-media": "^1.0.3",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"postcss-responsive-type": "^0.5.1",
"postcss-simple-vars": "^4.0.0",
"prettier": "^1.19.1",
"sass-loader": "^7.3.1",
"svg-sprite-loader": "^4.3.0",
"svgo-loader": "^1.2.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"vue-loader": "^15.9.5",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}