This repository was archived by the owner on Mar 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.19 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.19 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
{
"name": "sentiment-analysis-client",
"version": "0.0.1",
"description": "client app",
"main": "webpack.config.js",
"scripts": {
"dev": "./node_modules/.bin/webpack-dev-server --content-base src --inline --hot",
"dashboard": "webpack-dashboard -- webpack-dev-server --config ./webpack.config.js",
"test": "./node_modules/.bin/karma start --single-run --browsers PhantomJS",
"watch": "./node_modules/.bin/karma start"
},
"repository": {
"url": "git+https://github.com/Sentimental-Analysis/Client.git",
"type": "git"
},
"author": "Dominik Kotecki",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sentimental-Analysis/Client/issues"
},
"homepage": "https://github.com/Sentimental-Analysis/Client#readme",
"dependencies": {
"axios": "^0.15.2",
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"core-js": "^2.4.1",
"css-loader": "^0.25.0",
"express": "^4.14.0",
"immutable": "^3.8.1",
"log4js": "^0.6.38",
"node-sass": "^3.11.2",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-bootstrap": "^0.30.6",
"react-dom": "^15.3.2",
"react-history": "^0.15.1",
"react-redux": "4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.6",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-promise-middleware": "^4.1.0",
"redux-thunk": "^2.1.0",
"sass-loader": "^4.0.2",
"sinon": "^1.17.5",
"style-loader": "^0.13.1",
"tslib": "^1.4.0",
"typescript": "^2.0.7",
"webpack": "^1.13.3",
"tslint": "4.2.0",
"webpack-dev-server": "^1.16.2"
},
"devDependencies": {
"cheerio": "^0.22.0",
"enzyme": "^2.4.1",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-cli": "1.0.1",
"karma-coverage": "^1.1.1",
"karma-html-reporter": "0.2.7",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "1.0.2",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.8.0",
"mocha": "3.0.2",
"react-addons-test-utils": "^15.3.2",
"ts-loader": "^0.8.2",
"typescript": "2.1.4",
"uglify-js": "^2.7.3",
"webpack-dashboard": "0.1.8",
"webpack-dev-middleware": "^1.8.4"
}
}