-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
103 lines (103 loc) · 3.15 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
{
"name": "solution",
"version": "1.0.0",
"description": "solution template",
"main": "index.js",
"scripts": {
"prestart": "babel-node tools/startMessage.js",
"start": "npm-run-all --parallel webpack lint:watch",
"lint": "node_modules/.bin/esw webpack.config.* src tools",
"lint:watch": "npm run lint -- --watch",
"test": "babel-node mocha --reporter progress tools/testSetup.js \"src/**/*.test.js\"",
"webpack": "webpack-dev-server --inline --hot --port 8080 --host 0.0.0.0 --config ./webpack.config.js",
"build": "SET NODE_ENV=production & webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomasz-konecki/Solution.git"
},
"author": "me",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"colors": "^1.1.2",
"css-loader": "^0.28.7",
"eslint": "^4.17.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.6.1",
"eslint-watch": "^3.1.3",
"expect": "^22.3.0",
"express": "^4.16.2",
"html-webpack-plugin": "^2.30.1",
"jsdom": "^11.6.2",
"mocha": "^5.0.1",
"node-sass": "^4.7.2",
"npm-run-all": "^4.1.2",
"optimize-js-plugin": "0.0.4",
"react-hot-loader": "^3.0.0-beta.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.8.2"
},
"dependencies": {
"axios": "^0.18.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"bluebird": "^3.5.1",
"bootstrap": "^4.0.0",
"d3": "^5.4.0",
"fraction.js": "^4.0.8",
"i18next": "^11.2.3",
"i18next-browser-languagedetector": "^2.2.0",
"i18next-xhr-backend": "^1.5.1",
"javascript-time-ago": "^1.0.30",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.5",
"moment": "^2.21.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-c3js": "^0.1.20",
"react-datepicker": "^1.2.2",
"react-dnd": "^2.6.0",
"react-dnd-html5-backend": "^2.6.0",
"react-dom": "^16.2.0",
"react-i18next": "^7.6.0",
"react-input-range": "^1.3.0",
"react-paginate": "^5.1.0",
"react-persist": "^1.0.2",
"react-redux": "^5.0.6",
"react-responsive-modal": "^2.0.1",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-select": "^1.2.1",
"react-throttle": "^0.3.0",
"react-thunk": "^1.0.0",
"react-translate": "^6.0.0",
"redux": "^3.7.2",
"redux-devtools": "^3.4.1",
"redux-form": "^7.2.3",
"redux-logger": "^3.0.6",
"redux-persist": "^5.9.1",
"redux-persist-transform-filter": "^0.0.16",
"redux-thunk": "^2.2.0",
"regex": "^0.1.1",
"regexp": "^1.0.0",
"source-map-loader": "^0.2.3",
"url-loader": "^1.0.1",
"uuid": "^3.2.1"
},
"bugs": {
"url": "https://github.com/tomasz-konecki/Solution/issues"
},
"homepage": "https://github.com/tomasz-konecki/Solution#readme",
"keywords": []
}