-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
101 lines (101 loc) · 3.67 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "chat-widget",
"version": "3.0.0-sasuke",
"description": "",
"main": "app.js",
"author": "Forward <[email protected]>",
"license": "ISC",
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"prettier": "prettier --ignore-path './.prettierignore' --write './**/*.js'",
"prettify-commit": "pretty-quick --staged --pattern '**/*.js'",
"build-dev:scss-to-css": "sass --watch ./webplugin/scss:./webplugin/css/app/style",
"build:dev": "nodemon ./server/app.js",
"dev": "npm-run-all -p build:dev build-dev:scss-to-css setup-git-hooks",
"build-test": "export NODE_ENV=test && npm-run-all build-server gulp-build",
"build-release": "export NODE_ENV=release && npm-run-all build-server gulp-build",
"build-prod": "export NODE_ENV=prod && npm-run-all build-server gulp-build",
"build-prod-enterprise": "export NODE_ENV=prod_enterprise && npm-run-all build-server gulp-build",
"build-prod-in": "export NODE_ENV=prod_in && npm-run-all build-server gulp-build",
"build-prod-eu": "export NODE_ENV=prod_eu && npm-run-all build-server gulp-build",
"build-prod-cn": "export NODE_ENV=prod_cn && npm-run-all build-server gulp-build",
"build-staging": "export NODE_ENV=staging && npm-run-all build-server gulp-build",
"build-beta": "export NODE_ENV=prod_beta && npm-run-all build-server gulp-build",
"serve-build": "serve -C -l 3030 webplugin/build",
"run-danger-local": "danger local",
"run-danger-test": "danger ci",
"setup-git-hooks": "node setup-git-hooks.js",
"gulp-build": "cd ./webplugin && gulp",
"build-server": "node ./server/build.js",
"run-dev-server": "node ./server/app.js"
},
"dependencies": {
"@node-minify/clean-css": "6.0.0",
"@node-minify/core": "6.0.0",
"@node-minify/google-closure-compiler": "6.0.0",
"@node-minify/no-compress": "6.0.0",
"@node-minify/terser": "6.0.0",
"compression": "1.7.4",
"cors": "2.8.5",
"express": "4.17.1",
"form-data": "3.0.0",
"gulp-babel": "8.0.0",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "4.3.0",
"gulp-concat": "2.6.1",
"gulp-cssnano": "2.1.3",
"gulp-htmlmin": "5.0.1",
"gulp-if": "3.0.0",
"gulp-rename": "2.0.0",
"gulp-sass": "5.1.0",
"gulp-strip-comments": "2.6.0",
"gulp-tap": "^2.0.0",
"gulp-terser": "2.1.0",
"minimist": "1.2.6",
"node-fetch": "2.6.7",
"playwright": "1.29.1",
"npm-run-all": "4.1.5",
"playwright": "1.29.1",
"sass": "1.69.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-arrow-functions": "^7.24.7",
"@babel/plugin-transform-classes": "^7.23.8",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4",
"@babel/plugin-transform-optional-chaining": "^7.24.7",
"@babel/preset-env": "^7.23.8",
"@playwright/test": "^1.29.1",
"@sentry/cli": "^2.38.2",
"danger": "11.2.0",
"danger-plugin-jira-issue": "1.4.1",
"danger-plugin-no-console": "1.1.2",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"husky": "5.0.9",
"nodemon": "2.0.7",
"pinst": "2.1.4",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"serve": "14.0.1"
},
"nodemonConfig": {
"verbose": true,
"ext": "js, html, css, json, scss",
"ignore": [
"*.min.*",
"./webplugin/build/"
],
"delay": "4000",
"watch": [
"server",
"webplugin"
]
}
}