-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.9 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.9 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
{
"name": "pwageon",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"jest": {
"verbose": true,
"setupFilesAfterEnv": [
"<rootDir>__tests__/setup/enzyme.js"
],
"watchPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"scripts": {
"start": "nodemon server/index.js",
"dev": "webpack-dev-server",
"build": "webpack",
"test": "jest --watchAll --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/changyeamoon/pwageon.git"
},
"keywords": [
"pigeon"
],
"author": "Chang Moon, Braden Altstatt, Tristan Schoenfeld, Howard Na",
"license": "ISC",
"bugs": {
"url": "https://github.com/changyeamoon/pwageon/issues"
},
"homepage": "https://github.com/changyeamoon/pwageon#readme",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.4",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"cookie-session": "^1.3.3",
"cors": "^2.8.5",
"d3": "^4.1.0",
"dotenv": "^6.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"express": "^4.16.4",
"geodist": "^0.2.1",
"jest": "^24.1.0",
"node-geocoder": "^3.22.0",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"pg": "^7.8.1",
"react-google-login": "^5.0.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-router-dom": "^4.3.1",
"topojson": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^5.0.0",
"css-loader": "^2.1.0",
"file-loader": "^3.0.1",
"react-hot-loader": "^4.6.5",
"react-test-renderer": "^16.8.2",
"style-loader": "^0.23.1",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
}
}