-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.23 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 2.23 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@sapling/gui",
"version": "0.1.0",
"license": "MIT",
"description": "GUI for developing Sapling apps",
"type": "module",
"keywords": [
"sapling",
"saplingjs",
"ui",
"gui",
"admin",
"panel"
],
"bin": {
"saplingui": "./index.js"
},
"homepage": "https://www.saplingjs.com",
"bugs": "https://github.com/saplingjs/gui/issues",
"author": {
"name": "Oskari Groenroos",
"email": "oskari@groenroos.fi",
"url": "https://www.groenroos.fi"
},
"dependencies": {
"@tinyhttp/app": "^2.0.29",
"axios": "^1.3.3",
"bulma-stylus": "^0.9.2-rc.1",
"directory-tree": "^3.5.1",
"dot-object": "^2.1.4",
"get-port": "^6.1.2",
"is-port-reachable": "^4.0.0",
"milliparsec": "^2.2.2",
"open": "^8.4.1",
"prismjs": "^1.29.0",
"sirv": "^2.0.2",
"vue": "^2.7.14",
"vue-prism-editor": "^1.3.0",
"vue-router": "^3.6.5",
"vuex": "^3.6.2",
"yargs": "^17.7.0"
},
"peerDependencies": {
"@sapling/sapling": "^0.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"cross-env": "^7.0.3",
"laravel-mix": "^6.0.49",
"rimraf": "^4.1.2",
"stylus": "^0.59.0",
"stylus-loader": "^7.1.0",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.7.14",
"xo": "^0.53.1"
},
"scripts": {
"dev": "npm run development",
"development": "rimraf dist && mix",
"watch": "rimraf dist && mix watch",
"hot": "rimraf dist && mix watch --hot",
"prod": "npm run production",
"production": "rimraf dist && mix --production",
"prepare": "npm run production",
"lint-fix": "xo --fix",
"lint": "xo"
},
"files": [
"dist",
"routes",
"index.js"
],
"xo": {
"ignores": [
"dist/**/*.*",
"node_modules/**/*.*",
"test/**/*.*"
],
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false
},
"rules": {
"max-params": [
"warn",
{
"max": 6
}
],
"no-multiple-empty-lines": [
"error",
{
"max": 2
}
],
"no-await-in-loop": "off",
"no-new": "off",
"no-return-await": "off",
"object-curly-spacing": [
"error",
"always"
],
"unicorn/filename-case": [
"error",
{
"cases": {
"camelCase": true,
"pascalCase": true
}
}
],
"unicorn/numeric-separators-style": "off"
}
}
}