-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.08 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
{
"name": "oxr-dd",
"version": "0.1.0",
"description": "Open Exchange Rates interface by Dariusz Dubicki",
"dependencies": {
"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.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"compression": "1.7.1",
"compression-webpack-plugin": "1.0.1",
"copy-webpack-plugin": "4.2.0",
"css-loader": "0.28.7",
"currency-flags": "1.2.0",
"express": "4.16.2",
"extract-text-webpack-plugin": "3.0.1",
"file-loader": "1.1.5",
"html-webpack-plugin": "2.30.1",
"jest": "21.2.1",
"moment": "2.19.1",
"node-sass": "4.5.3",
"prop-types": "15.6.0",
"react": "16.0.0",
"react-datepicker": "0.56.0",
"react-dom": "16.0.0",
"react-redux": "5.0.6",
"recharts": "1.0.0-beta.0",
"redux": "3.7.2",
"redux-actions": "2.2.1",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0",
"sass-loader": "6.0.6",
"semantic-ui-css": "2.2.12",
"semantic-ui-react": "0.75.1",
"style-loader": "0.19.0",
"url-loader": "0.6.2",
"webpack": "3.8.1",
"whatwg-fetch": "2.0.3"
},
"devDependencies": {
"core-js": "2.5.1",
"eslint": "4.9.0",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.4.0"
},
"engines": {
"node": ">=8.2.0",
"npm": ">=5.3.0"
},
"license": "MIT",
"scripts": {
"start": "node ./src/scripts/server.js",
"build": "webpack --env.production",
"build-dev": "webpack",
"watch": "webpack --watch",
"lint": "eslint \"./src/scripts/**/*.js\" --fix",
"test": "jest"
},
"jest": {
"verbose": true,
"testMatch": [
"<rootDir>/src/scripts/**/?(*.)(spec|test).js?(x)"
]
}
}