-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.49 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
{
"name": "moving-motivators",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18.x"
},
"scripts": {
"serve": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service serve; # TODO Don't use --openssl-legacy-provider in any of the scripts, here's why: https://stackoverflow.com/a/73027407/2080716 ",
"build": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service build",
"test": "vue-cli-service test:unit",
"eslint": "vue-cli-service lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/vue-fontawesome": "^0.1.9",
"@types/object-hash": "^1.3.1",
"core-js": "^3.4.4",
"object-hash": "^2.0.1",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^8.3.0"
},
"devDependencies": {
"@types/jest": "^25.1.1",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-typescript": "^4.1.0",
"@vue/cli-plugin-unit-jest": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-typescript": "^5.0.1",
"@vue/test-utils": "1.0.0-beta.29",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.1.2",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"typescript": "~3.7.5",
"vue-template-compiler": "^2.6.10"
}
}