-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·64 lines (64 loc) · 1.58 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": "@drenso/vue-frontend-shared",
"description": "Shared code that can be used over our Vue frontend implementations",
"author": "Drenso <[email protected]>",
"contributors": [
"Bob van de Vijver <[email protected]>",
"Tobias Feijten <[email protected]>"
],
"license": "MIT",
"private": false,
"version": "0.0.0",
"scripts": {
"clean": "rimraf ./dist",
"tsc": "tsc",
"build": "yarn clean && yarn tsc",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"rimraf": "^3.0",
"tslint": "^6.1",
"typescript": "^4.0",
"//": "Peer dependencies",
"@types/big.js": "^6.2",
"@types/jquery": "^3.3",
"@types/select2": "^4.0",
"axios": ">=0.19 || ^1.0",
"big.js": "^5.2 || ^6.0",
"bootstrap-vue": "^2.11",
"jquery": "^3.5",
"moment": "^2.29",
"moment-timezone": "^0.5.31",
"select2": "^4.0",
"uuid": "^11.0.0 <11.0.3",
"vee-validate": "^3.2",
"vue": "^2.6 <2.7",
"vue-class-component": "^7.2",
"vue-moment": "^4.1"
},
"peerDependencies": {
"@types/big.js": "^6.2",
"@types/jquery": "^3.3",
"@types/select2": "^4.0",
"axios": ">=0.19 || ^1.0",
"big.js": "^6.2",
"bootstrap-vue": "^2.11",
"jquery": "^3.5",
"moment": "^2.29",
"moment-timezone": "^0.5.31",
"select2": "^4.0",
"uuid": "^11.0.0 <11.0.3",
"vee-validate": "^3.2",
"vue": "^2.6 <2.7",
"vue-class-component": "^7.2",
"vue-moment": "^4.1"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideeffects": false,
"files": [
"dist",
"eslint",
"readme.md"
]
}