-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.6 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
{
"name": "calendar-summary",
"version": "1.0.0",
"description": "Web app that summarizes my google calendar on a weekly basis",
"main": "index.js",
"scripts": {
"start": "webpack --progress --colors && node ./build/local.js",
"watch": "nodemon",
"build": "webpack --env dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azizj1/calendar-summary.git"
},
"author": "Aziz Javed",
"license": "ISC",
"bugs": {
"url": "https://github.com/azizj1/calendar-summary/issues"
},
"homepage": "https://github.com/azizj1/calendar-summary#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-react-constant-elements": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.12.10",
"@babel/runtime": "^7.0.0",
"@types/aws-lambda": "^8.10.11",
"@types/aws-serverless-express": "^3.0.1",
"@types/body-parser": "^1.17.0",
"@types/chalk": "^2.2.0",
"@types/classnames": "^2.2.11",
"@types/cors": "^2.8.4",
"@types/debug": "^0.0.30",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.7.35",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"assets-webpack-plugin": "^7.0.0",
"autoprefixer": "^9.1.3",
"babel-loader": "^8.0.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"before-build-webpack": "^0.2.9",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"glob": "^7.1.6",
"isomorphic-style-loader": "^5.1.0",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^4.9.3",
"nodemon": "^1.18.4",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"stylelint": "^9.5.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.3.0",
"stylelint-webpack-plugin": "^0.10.5",
"ts-loader": "^5.0.0",
"tslint": "^5.11.0",
"tslint-loader": "^3.6.0",
"typescript": "^3.0.3",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-sources": "^1.1.0",
"yazl": "^2.5.1"
},
"dependencies": {
"aws-serverless-express": "^3.3.5",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"classnames": "^2.2.6",
"cors": "^2.8.4",
"debug": "^3.1.0",
"express": "^4.16.3",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"whatwg-fetch": "^3.5.0"
}
}