-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.35 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
{
"name": "beers",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/IgorCRD/beers.git",
"author": "<igor.crispimdiniz@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node server.js",
"dev": "webpack-dev-server --mode development --open",
"postinstall": "webpack --mode production",
"build": "webpack --mode production",
"devbuild": "webpack --mode development",
"lint": "eslint ./src",
"integration": "jest --passWithNoTests --runInBand --testPathPattern=.*\\.integ\\.\\(test\\|spec\\)\\.js\\(x\\)?",
"unit": "jest --passWithNoTests --testPathPattern=.*\\.unit\\.\\(test\\|spec\\)\\.js\\(x\\)?",
"test": "yarn run integration && yarn run unit"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/.cache",
"<rootDir>/dist",
"<rootDir>/build"
],
"setupFiles": [
"<rootDir>/tests-setup.js"
],
"resolver": "jest-webpack-resolver"
},
"jestWebpackResolver": {
"webpackConfig": "./webpack.config.js"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.1.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-webpack": "^0.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.12.1",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.16.3",
"grid-styled": "^4.1.0",
"lodash": "^4.17.10",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"styled-components": "^3.2.6",
"styled-normalize": "^4.0.0",
"styled-spinkit": "^0.3.0",
"whatwg-fetch": "^2.0.4"
}
}