-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.67 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.67 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
{
"name": "strautomator-web",
"version": "26.117.12142",
"description": "Strautomator.com website.",
"author": "Igor Ramadas",
"main": "server/index.js",
"types": "server/index.d.ts",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/strautomator/web.git"
},
"scripts": {
"build": "NODE_OPTIONS=--openssl-legacy-provider nuxt build",
"generate": "NODE_OPTIONS=--openssl-legacy-provider nuxt generate",
"start": "cross-env NODE_ENV=production NODE_OPTIONS=--openssl-legacy-provider node server/index.js",
"start:ts": "cross-env NODE_ENV=development NODE_OPTIONS=--openssl-legacy-provider STRAUTOMATOR_CRON=true node --preserve-symlinks -r ts-node/register ./src/index.ts",
"start:dev": "nodemon"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/dayjs": "^1.4.1",
"@nuxtjs/vuetify": "^1.12.3",
"@paddle/paddle-node-sdk": "^3.6.0",
"axios": "^0.30.3",
"Base64": "^1.3.0",
"body-parser": "^2.2.2",
"chart.js": "^3.9.1",
"chartjs-adapter-dayjs-3": "^1.2.3",
"chroma-js": "^3.2.0",
"client-sessions": "^0.8.0",
"cookie-universal-nuxt": "^2.2.2",
"country-linkify": "^25.462.12203",
"cross-env": "^10.1.0",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"floating-vue": "^1.0.0-beta.19",
"json-editor-vue": "^0.18.1",
"nuxt": "^2.18.1",
"qs": "^6.15.0",
"strautomator-core": "strautomator/core",
"vanilla-jsoneditor": "^3.11.0",
"vue": "^2.7.16",
"vue-mention": "^1.0.0-floating-vue1",
"vuedraggable": "^2.24.3",
"vuetify-loader": "^1.9.2"
},
"devDependencies": {
"@nuxt/types": "^2.18.1",
"@types/express": "^5.0.6",
"@types/lodash": "^4.17.24",
"@types/node": "^25.5.0",
"axios-debug-log": "^0.8.4",
"chalk": "^4.1.2",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
"webpack": "^4.47.0"
},
"peerDependencies": {
"anyhow": "^3.1.2",
"setmeup": "^1.8.2"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm run start:ts",
"ext": "ts",
"delay": "5000"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false,
"arrowParens": "always",
"bracketSpacing": false,
"printWidth": 250
}
}