-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "sitewhere-ide-common",
"version": "3.0.2",
"description": "Common base library used for SiteWhere IDE products",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sitewhere/sitewhere-ide-common.git"
},
"keywords": [
"sitewhere",
"ide",
"common"
],
"author": "Derek Adams <derek.adams@sitewhere.com>",
"license": "CPAL-1.0",
"bugs": {
"url": "https://github.com/sitewhere/sitewhere-ide-common/issues"
},
"homepage": "https://github.com/sitewhere/sitewhere-ide-common#readme",
"dependencies": {
"axios": "0.21.1",
"moment": "^2.25.1",
"sitewhere-rest-api": "3.0.2"
},
"devDependencies": {
"@types/node": "^13.13.4",
"@types/vuelidate": "^0.7.11",
"rollup": "^2.7.6",
"rollup-plugin-typescript2": "^0.27.0",
"tslint": "^6.1.2",
"typescript": "^3.5.3",
"vue": "^2.6.11",
"vue-router": "^3.3.2",
"vuex": "^3.3.0"
}
}