generated from matai-2020/boilerplate-react-redux
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
110 lines (110 loc) · 3.3 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
104
105
106
107
108
109
110
{
"name": "kiwi-roadies",
"version": "0.1.0",
"description": "React Redux using express",
"repository": "https://github.com/matai-2020/Kiwi-Roadies",
"main": "server/index.js",
"author": "EDA Students - Ariana, Kim, Rikke, Jonty",
"scripts": {
"lint": "npx eslint . --ext .js,.jsx --ignore-path .eslintignore",
"format": "npx eslint . --fix --ext .js,.jsx",
"build": "webpack --config client/webpack.prod.config.js",
"dev:build": "webpack --config client/webpack.dev.config.js",
"start": "node server",
"coverage": "jest --coverage",
"test": "jest --verbose",
"e2e": "cypress run",
"test:watch": "npm test -- --watchAll",
"dev": "run-p dev:server dev:client",
"dev:server": "nodemon server",
"dev:client": "webpack --config client/webpack.dev.config.js --watch"
},
"license": "ISC",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
]
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/tests/cypress/"
],
"transform": {
"^.+\\.jsx?$": "babel7-jest"
}
},
"dependencies": {
"@mapbox/mapbox-gl-directions": "^4.0.3",
"@math.gl/web-mercator": "^3.2.2",
"@testing-library/jest-dom": "^5.11.1",
"@testing-library/react": "^10.4.7",
"@types/d3-ease": "^1.0.9",
"@zeit/next-css": "^1.0.1",
"babel7-jest": "^1.0.1",
"bootstrap": "^4.5.0",
"d3": "^5.16.0",
"d3-ease": "^1.0.6",
"deck.gl": "^8.2.3",
"dotenv": "^8.2.0",
"dotenv-webpack": "^2.0.0",
"express": "^4.17.1",
"fs": "0.0.1-security",
"immutable": "^4.0.0-rc.12",
"leaflet": "^1.6.0",
"leaflet-routing-machine": "^3.2.12",
"leaflet.beautifymarker": "^1.1.1",
"proj4": "^2.6.2",
"prop-types": "^15.7.2",
"react-bootstrap": "^1.2.2",
"react-immutable-proptypes": "^2.2.0",
"react-leaflet": "^2.7.0",
"react-map-gl": "^5.2.7",
"react-map-gl-geocoder": "^2.0.11",
"react-router-dom": "^5.2.0",
"redux-immutablejs": "0.0.8",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.5",
"reselect": "^4.0.0",
"superagent": "^5.3.1",
"webpack-merge": "^5.0.9"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.10.1",
"babel-7-jest": "^21.3.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"cypress": "^4.10.0",
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"npm-install-webpack-plugin": "^4.0.5",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-mock-store": "^1.5.4",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}