-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.23 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
{
"name": "50words",
"version": "1.4.1",
"description": "",
"main": "index.js",
"scripts": {
"develop": "npm install --no-progress && node_modules/.bin/webpack serve --config webpack-development.js",
"build:production": "npm install --no-progress && node_modules/.bin/webpack --config webpack-production.js",
"unitTests": "npm install && node_modules/mocha/bin/mocha -w -r jsdom-global/register 'src/**/*.spec.js'",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch"
},
"repository": {
"type": "git",
"url": ";"
},
"author": "Marco La Rosa",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"core-js": "^3.33.2",
"element-plus": "^2.4.1",
"lodash": "^4.17.21",
"mapbox-gl": "^2.15.0",
"moment": "^2.29.4",
"tippy.js": "^6.3.7",
"vue": "^3.3.7",
"vue-gtag": "^2.0.1",
"vue-router": "^4.2.5",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.23.2",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"connect-history-api-fallback": "^2.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"raw-loader": "^4.0.2",
"regenerator-runtime": "^0.14.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"tailwindcss": "^3.3.5",
"terser-webpack-plugin": "^5.3.9",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue-loader": "^17.3.1",
"vue-template-compiler": "^2.7.15",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
}
}