forked from StackStorm/st2web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.71 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
102
103
104
105
106
107
108
109
110
111
112
{
"name": "st2web",
"version": "2.4.3",
"st2_version": "3.9dev",
"private": true,
"scripts": {
"eslint": "eslint .",
"develop": "gulp",
"build": "gulp production",
"serve": "gulp serve-production",
"serve-prod": "gulp serve-production",
"serve-dev": "gulp",
"gulp-tasks": "gulp --tasks",
"clean": "rm -rf js css build",
"test": "gulp test",
"test-unit": "gulp test-unit",
"test-functional": "gulp test-functional",
"test-production": "gulp test-production"
},
"repository": "stackstorm/st2web",
"engines": {
"node": "20.8.1",
"npm": "10.1.0"
},
"browserify": {
"transform": [
"babelify",
[
"@stackstorm/browserify-postcss",
{
"extensions": [
".css"
],
"inject": "insert-css",
"modularize": false,
"plugin": [
"postcss-import",
"postcss-nested",
[
"postcss-preset-env",
{
"features": {
"custom-properties": {
"preserve": false
}
}
}
]
]
}
]
]
},
"workspaces": [
"apps/*",
"modules/*",
"tasks",
"."
],
"dependencies": {
"@stackstorm/app-actions": "^2.4.3",
"@stackstorm/app-code": "^2.4.3",
"@stackstorm/app-history": "^2.4.3",
"@stackstorm/app-inquiry": "^2.4.3",
"@stackstorm/app-packs": "^2.4.3",
"@stackstorm/app-rules": "^2.4.3",
"@stackstorm/app-triggers": "^2.4.3",
"@stackstorm/module-api": "^2.4.3",
"@stackstorm/module-router": "^2.4.3",
"@stackstorm/module-store": "^2.4.3",
"acorn": "^6.4.1",
"axios": "^0.24.0",
"elliptic": "^6.5.4",
"glob-parent": "^6.0.2",
"js-yaml": "^3.13.1",
"kind-of": "^6.0.3",
"lodash": "4.17.21",
"minimatch": "^3.0.4",
"mixin-deep": "^1.3.2",
"moment": "2.29.4",
"node": "20.8.1",
"node-uuid": "^1.4.8",
"open": "^8.4.0",
"qs": "^6.10.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-redux": "7.0.2",
"redux": "^4.0.1",
"set-value": "^4.1.0",
"tar": "^6.1.11",
"trim-newlines": "^4.0.2",
"urijs": "^1.19.11",
"websocket-extensions": "^0.1.4"
},
"devDependencies": {
"@stackstorm/module-test-utils": "^2.4.3",
"@stackstorm/st2-build": "^2.4.3",
"babel-eslint": "10.0.1",
"chai": "4.2.0",
"eslint": "^6.2.1",
"eslint-plugin-flowtype": "^3.5.1",
"eslint-plugin-notice": "0.7.8",
"eslint-plugin-react": "7.12.4",
"gulp": "4.0.1",
"ignore-styles": "5.0.1",
"insert-css": "2.0.0",
"zombie": "5.0.8"
},
"resolutions": {
"open": "^8.4.0"
}
}