This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.9 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
{
"name": "nlu-trainer-app",
"version": "1.0.0",
"description": "NLU trainner UI",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "NODE_MODE=dev && npm run clean && npm run build && webpack-dev-server --env=dev --color",
"build": "tsc",
"build:dist": "webpack --env=prod --progress",
"clean": "rm -rf built/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ffauchille/nlu-trainner.git"
},
"keywords": [
"RASA-NLU",
"UI"
],
"author": "Florent FAUCHILLE",
"license": "ISC",
"bugs": {
"url": "https://github.com/ffauchille/nlu-trainner/issues"
},
"homepage": "https://github.com/ffauchille/nlu-trainner#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@types/react": "^16.3.17",
"@types/react-dom": "^16.0.6",
"@types/react-redux": "^6.0.2",
"@types/react-router-redux": "^5.0.15",
"awesome-typescript-loader": "^5.2.0",
"babel-loader": "^8.0.0",
"dotenv-webpack": "^1.5.7",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"redux-devtools-extension": "^2.13.5",
"source-map-loader": "^0.2.3",
"typescript": "^3.0.3",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.1.4",
"webpack-notifier": "^1.6.0"
},
"dependencies": {
"ajv": "^6.5.3",
"babel-polyfill": "^6.26.0",
"connected-react-router": "^4.3.0",
"css-loader": "^1.0.0",
"hoek": "^5.0.4",
"npm-check-updates": "^2.14.2",
"path-to-regexp": "^2.2.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"redux": "^4.0.0",
"redux-form": "^7.4.2",
"redux-observable": "^1.0.0",
"rxjs": "^6.2.0",
"semantic-ui": "^2.3.3",
"semantic-ui-react": "^0.82.1",
"style-loader": "^0.23.0",
"url-parse": "^1.4.3"
}
}