-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.4 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
{
"name": "ing-webweek",
"version": "1.0.0",
"description": "Demo: Web Components: Best Practices for Data-Flow and Architecture",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --mode=development --hot",
"build": "webpack --mode=production",
"test": "jest -t",
"test:watch": "jest -t --watch",
"backend": "json-server --watch backend/db.json"
},
"author": "Vlad Stawizki, Florian Unglaub, Paul Straetmans",
"license": "ISC",
"dependencies": {
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"uikit": "^3.0.0-rc.17"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"handlebars": "^4.0.11",
"handlebars-loader": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"json-server": "^0.14.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"prettier-eslint": "^8.8.2",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.11"
}
}