forked from StackStorm/st2flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.11 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
{
"name": "st2flow",
"version": "0.3.0",
"st2_version": "3.3dev",
"description": "StackStorm Workflow Editor",
"private": true,
"scripts": {
"flow": "flow",
"eslint": "eslint .",
"develop": "NODE_PATH=./node_modules gulp",
"build": "NODE_PATH=./node_modules gulp production",
"clean": "rm -rf js css build",
"test": "NODE_PATH=./node_modules gulp test",
"test-unit": "NODE_PATH=./node_modules gulp test-unit",
"test-functional": "NODE_PATH=./node_modules gulp test-functional",
"test-production": "NODE_PATH=./node_modules gulp test-production"
},
"repository": "extremenetworks/st2flow",
"engines": {
"node": "^10.4.0",
"npm": "^5.3.0"
},
"workspaces": [
"modules/*",
"."
],
"browserify": {
"transform": [
"babelify",
[
"@stackstorm/browserify-postcss",
{
"extensions": [
".css"
],
"inject": "insert-css",
"modularize": false,
"plugin": [
"postcss-import",
"postcss-nested",
"postcss-preset-env"
]
}
]
]
},
"dependencies": {
"@babel/plugin-transform-async-to-generator": "^7.4.0",
"@babel/plugin-transform-flow-strip-types": "^7.4.0",
"@stackstorm/module-api": "2.0.0",
"@stackstorm/module-router": "2.0.0",
"@stackstorm/module-store": "2.0.0",
"@stackstorm/st2-style": "2.0.0",
"@stackstorm/st2flow-canvas": "1.0.0",
"@stackstorm/st2flow-details": "1.0.0",
"@stackstorm/st2flow-header": "1.0.0",
"@stackstorm/st2flow-model": "1.0.0-pre.5",
"@stackstorm/st2flow-palette": "1.0.0",
"babel-eslint": "^10.0.1",
"classnames": "^2.2.5",
"eslint-plugin-flowtype": "^3.5.1",
"eventemitter3": "^3.1.0",
"gulp-uglify-es": "^1.0.4",
"insert-css": "^2.0.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"prop-types": "^15.6.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-hotkeys": "^1.1.4",
"react-redux": "^6.0.1",
"react-router-dom": "^5.0.0",
"redux": "^4.0.1",
"urijs": "^1.19.1"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-decorators": "7.4.0",
"@babel/plugin-proposal-object-rest-spread": "7.4.3",
"@babel/plugin-transform-runtime": "7.4.3",
"@babel/polyfill": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.4.0",
"@stackstorm/browserify-postcss": "0.3.4-patch.5",
"@stackstorm/module-test-utils": "^2.0.0",
"@stackstorm/st2-build": "^2.4.2",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"chai": "^4.1.2",
"eslint": "^5.16.0",
"eslint-plugin-notice": "0.7.8",
"eslint-plugin-react": "^7.12.4",
"flow-bin": "^0.96.0",
"ignore-styles": "^5.0.1",
"lerna": "^3.4.3",
"less": "^3.9.0",
"postcss": "^7.0.14",
"postcss-import": "12.0.1",
"postcss-nested": "4.1.2",
"postcss-preset-env": "6.6.0",
"request": "^2.69.0",
"sinon": "^7.3.1",
"sinon-chai": "^3.3.0",
"zombie": "^6.1.4"
}
}