-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.65 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@ubud-app/client",
"description": "ubud is a simple and self-hosted budgeting software.",
"scripts": {
"test": "echo \"Error: no test specified\"",
"build": "grunt --gruntfile gruntfile.cjs",
"develop": "grunt develop --gruntfile gruntfile.cjs --develop --notifier --only=en-US",
"analyze": "grunt develop --gruntfile gruntfile.cjs --analyze",
"check": "npm run check:eslint && npm run check:jsinspect",
"check:quick": "npm run check:eslint && npm run check:jsinspect",
"check:eslint": "eslint ./src",
"check:jsinspect": "npx jsinspect --threshold 45 ./src",
"semantic-release": "semantic-release"
},
"author": "Sebastian Pekarek <[email protected]>",
"homepage": "https://ubud.club",
"bugs": {
"url": "https://github.com/ubud-app/client/issues"
},
"main": "./src/index.cjs",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.25.4",
"@babel/register": "^7.24.6",
"@lodder/grunt-postcss": "^3.1.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@sentry/webpack-plugin": "^2.22.3",
"autoprefixer": "^10.4.20",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"babel-preset-minify": "^0.5.2",
"cssnano": "^7.0.5",
"eslint": "^7.32.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-security": "^2.1.0",
"favicons": "^7.2.0",
"grunt": "^1.6.1",
"grunt-browser-sync": "^2.2.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-htmlmin": "^3.1.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "^3.1.0",
"grunt-template": "^1.0.0",
"grunt-webpack": "^6.0.0",
"grunt-zopfli": "^0.3.3",
"html-loader": "^5.1.0",
"node-sass": "^9.0.0",
"pixrem": "^5.0.0",
"postcss": "^8.4.41",
"semantic-release": "^24.1.0",
"socket.io-client": "4.6",
"svg-inline-loader": "^0.8.2",
"webpack": "^5.94.0",
"webpack-build-notifier": "^3.1.0",
"webpack-bundle-analyzer": "^4.10.2"
},
"dependencies": {
"@sentry/browser": "^8.27.0",
"autonumeric": "^4.10.5",
"backbone": "^1.6.0",
"filesize": "^10.1.4",
"js-gravatar": "^1.1.3",
"luxon": "^3.5.0",
"mathjs": "^13.1.1",
"rivets": "^0.9.6",
"ua-parser-js": "^1.0.38",
"underscore": "^1.13.7",
"zepto": "^1.2.0"
},
"version": "1.4.0",
"repository": {
"type": "git",
"url": "https://github.com/ubud-app/client.git"
},
"engines": {
"node": ">=12.0.0"
}
}