-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.36 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.36 KB
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": "etap-web",
"version": "1.0.0",
"description": "The front-end for the ETAP app",
"main": "index.js",
"scripts": {
"start": "node ./src/server.js",
"test": "jest",
"watch": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"postinstall": "npm run build"
},
"jest": {
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
],
"collectCoverageFrom": [
"<rootDir>/__tests__/**/*.test.js",
"!backend/__test__/**/*.spec.js",
"!<rootDir>/node_modules/",
"!<rootDir>/backend/node_modules/",
"!<rootDir>/path/to/dir/"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
},
"testURL": "http://localhost/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SeattleGiveCamp/SGC2018_etap-web.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/SeattleGiveCamp/SGC2018_etap-web/issues"
},
"homepage": "https://github.com/SeattleGiveCamp/SGC2018_etap-web#readme",
"devDependencies": {
"@material-ui/core": "^3.0.2",
"@material-ui/icons": "^3.0.1",
"@mdi/font": "^2.7.94",
"@mdi/react": "^1.0.1",
"@types/googlemaps": "^3.30.13",
"@types/markerclustererplus": "^2.1.33",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.11",
"dotenv": "^6.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-react": "^7.9.1",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.1.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "^1.1.4",
"react-test-renderer": "^16.4.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"superagent": "^3.8.3",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"axios": "^0.18.0",
"babel-plugin-direct-import": "^0.5.0",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"deepmerge": "^2.2.1",
"express": "^4.16.3",
"file-loader": "^2.0.0",
"mdi-material-ui": "^5.4.0",
"query-string": "^6.2.0",
"react-cookies": "^0.1.0",
"react-favicon": "0.0.14",
"react-select": "^2.1.1",
"redux-mock-store": "^1.5.3",
"typeface-roboto": "0.0.54",
"webpack": "^4.19.1"
}
}