forked from StackStorm/st2web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.51 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.51 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
87
88
89
{
"name": "st2web",
"version": "1.0.0-pre.5",
"st2_version": "2.7dev",
"private": true,
"scripts": {
"eslint": "eslint .",
"develop": "gulp",
"build": "gulp production",
"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": "^8.4.0",
"npm": "^5.3.0"
},
"browserify": {
"transform": [
"babelify",
[
"@stackstorm/browserify-postcss",
{
"extensions": [
".less"
],
"inject": "insert-css",
"modularize": false,
"plugin": [
"@stackstorm/postcss-less-engine"
],
"parser": "@stackstorm/postcss-less-engine/parser"
}
]
]
},
"dependencies": {
"@stackstorm/app-actions": "^1.0.0-pre.5",
"@stackstorm/app-docs": "^1.0.0-pre.5",
"@stackstorm/app-history": "^1.0.0-pre.5",
"@stackstorm/app-packs": "^1.0.0-pre.5",
"@stackstorm/app-rules": "^1.0.0-pre.5",
"@stackstorm/module-api": "^1.0.0-pre.5",
"@stackstorm/module-login": "^1.0.0-pre.5",
"@stackstorm/st2-style": "^1.0.0-pre.5",
"classnames": "^2.2.5",
"insert-css": "^2.0.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.5",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"urijs": "^1.17.1"
},
"devDependencies": {
"@stackstorm/browserify-postcss": "0.3.4-patch.1",
"@stackstorm/module-test-utils": "^1.0.0-pre.5",
"@stackstorm/postcss-less-engine": "0.6.2",
"@stackstorm/st2-build": "^1.0.0-pre.5",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^14.5.0",
"chai": "^4.1.2",
"eslint": "^4.14.0",
"eslint-plugin-react": "^7.5.1",
"gulp": "github:gulpjs/gulp#d8f5c90a0622d19ef1943a2a3d02dc50e3c853e7",
"ignore-styles": "^5.0.1",
"lerna": "^2.5.1",
"less": "^2.7.3",
"postcss": "^6.0.14",
"request": "^2.69.0",
"sinon": "^4.1.3",
"sinon-chai": "^2.14.0",
"zombie": "^5.0.7"
}
}