-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
80 lines (80 loc) · 2.32 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
{
"name": "gnib-visa-app",
"version": "2.0.0",
"description": "GNIB & Re-Entry Visa Appointment App",
"main": "index.js",
"directories": {
"test": "test"
},
"jest": {
"testURL": "http://localhost"
},
"scripts": {
"webpack-watch": "webpack -d --watch",
"express-server:dev": "nodemon server.js",
"express-server:prod": "node server.js",
"test": "jest",
"test:watch": "npm test -- --watch",
"dev": "npm-run-all --parallel webpack-watch test:watch express-server:dev",
"build": "webpack --config webpack.config.prod.js --progress --colors",
"heroku-prebuild": "npm install --only=dev",
"heroku-postbuild": "npm run build",
"start": "npm run express-server:prod"
},
"repository": {
"type": "git",
"url": "https://github.com/HarshadRanganathan/gnib-visa-app.git"
},
"keywords": [
"gnib",
"irp",
"visa",
"appointment"
],
"author": "Harshad Ranganathan",
"license": "GPL-3.0",
"homepage": "https://github.com/HarshadRanganathan/gnib-visa-app.git#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^8.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"compression-webpack-plugin": "^1.1.7",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.1",
"express": "^4.16.4",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.19.1",
"jest": "^24.8.0",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-loader": "^2.1.0",
"redux-devtools-extension": "^2.13.2",
"script-ext-html-webpack-plugin": "^1.8.8",
"style-ext-html-webpack-plugin": "^3.4.7",
"style-loader": "^0.20.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@material-ui/core": "^3.7.1",
"axios": "^0.19.0",
"cheerio": "^1.0.0-rc.2",
"firebase": "^5.7.2",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"path": "^0.12.7",
"react": "^16.3.0",
"react-disqus-comments": "^1.1.1",
"react-dom": "^16.3.0",
"react-redux": "^5.0.6",
"react-responsive": "^6.0.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
}
}