-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.77 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
66
{
"name": "wizard-italia",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "NODE_OPTIONS='--openssl-legacy-provider' vue-cli-service serve",
"build": "NODE_OPTIONS='--openssl-legacy-provider' vue-cli-service build",
"lint": "vue-cli-service lint",
"transform-configuration": "npx js-yaml ./src/configuration/tree.yaml > ./src/configuration/tree.json",
"deploy": "gh-pages -u 'Deploy Bot <no-reply@teamdigitale.governo.it>' -d dist/",
"wc": "rm -rf ./dist && vue-cli-service build --target lib --name wizard-italia src/wc.js",
"prepare-wc-demo": "cp -R ./dist ./demo"
},
"dependencies": {
"@fontsource/titillium-web": "^4.3.0",
"@oruga-ui/oruga": "^0.3.6",
"bootstrap-italia": "^1.4.3",
"core-js": "^3.6.5",
"vue": "^2.6.11",
"wizard-italia-component": "0.0.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "~4.5.13",
"@vue/eslint-config-airbnb": "^7.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-vue": "^9.17.0",
"gh-pages": "^5.0.0",
"js-yaml": "^4.1.0",
"json-loader": "^0.5.7",
"sass": "^1.42.1",
"sass-loader": "^10",
"vue-template-compiler": "^2.6.11"
},
"files": [
"dist",
"src"
],
"main": "./dist/wizard-italia.common.js",
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/recommended",
"eslint:recommended",
"@vue/airbnb"
],
"parserOptions": {
"parser": "babel-eslint",
"ecmaVersion": 6
},
"rules": {
"vue/no-template-target-blank": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}