forked from DecisionsDev/odm-decision-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
141 lines (141 loc) · 4.43 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "odm-decision-forms",
"version": "0.3.3",
"author": "Antoine Melki",
"license": "Apache-2.0",
"description": "A React-based UI to init and run Hosted Transparent Decision Services",
"repository": {
"type": "git",
"url": "https://github.com/ODMDev/odm-decision-forms"
},
"bugs": {
"email": "[email protected]"
},
"engines": {
"node": ">= 8.0.0"
},
"bin": {
"odm-decision-forms": "./dist/server/index.js"
},
"main": "./lib/lib.js",
"module": "./lib/lib.js",
"files": [
"dist",
"lib"
],
"keywords": [
"odm",
"ibm",
"rpa",
"robotic",
"process",
"automation",
"htds",
"decision"
],
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/test/.*\\.(ts|tsx|js)$"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"scripts": {
"dev": "node src/server/index --env development",
"start": "node src/server/index --env production",
"clean": "shx rm -rf lib dist _output stats",
"build:dist:server": "mkdirp dist && cp -R ./src/server ./dist/server",
"build:dist": "rimraf dist && npm run build:dist:server && cross-env NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"build:lib": "rimraf lib && cross-env NODE_ENV=production webpack --config ./webpack.lib.config.js --progress --profile --colors",
"build": "npm run clean && npm run compile && npm run build:dist && npm run build:lib",
"patch": "npm run build && npm version patch && npm publish",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch",
"compile": "tsc -m commonjs --noEmit",
"stats:lib": "rimraf lib && cross-env NODE_ENV=production webpack --config ./webpack.lib.config.js --json > stats/stats.lib.json",
"stats:dist": "rimraf dist && cross-env NODE_ENV=production webpack --config ./webpack.production.config.js --json > stats/stats.dist.json",
"stats": "rimraf stats && mkdirp stats && npm run stats:dist && npm run stats:lib"
},
"dependencies": {
"axios": "^0.16.2",
"body-parser": "^1.18.1",
"commander": "^2.9.0",
"cors": "^2.8.4",
"express": "^4.15.4"
},
"devDependencies": {
"@types/es6-promise": "0.0.33",
"@types/jest": "^20.0.8",
"@types/jquery": "^3.2.13",
"@types/lodash": "^4.14.82",
"@types/react": "^16.0.25",
"@types/react-dom": "^16.0.3",
"@types/react-redux": "^5.0.8",
"awesome-typescript-loader": "^3.2.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-modules-literals": "0.0.3",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-es5-property-mutators": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.3.13",
"cross-env": "^5.0.5",
"css-loader": "^0.28.5",
"date-fns": "^1.29.0",
"es3ify-webpack-plugin": "0.0.1",
"es6-promise-promise": "^1.0.0",
"event-source-polyfill": "0.0.11",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"history": "^4.7.2",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.1",
"json-loader": "^0.5.3",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"lodash-webpack-plugin": "^0.11.4",
"lodash.startcase": "^4.4.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-json-pretty": "^1.6.3",
"react-jsonschema-form": "^1.0.0",
"react-redux": "^5.0.6",
"react-router": "^4.1.2",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.8",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"shx": "^0.2.2",
"source-map-loader": "^0.2.1",
"style-loader": "^0.18.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"ts-jest": "^21.2.4",
"typescript": "^2.5.2",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.13.1"
}
}