-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.37 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
{
"name": "west-point-tide-widget",
"version": "0.0.4",
"description": "A little web app that tells you the weather conditions in Ballard, Seattle",
"main": "index.js",
"scripts": {
"deploy": "sls deploy",
"deploy:client": "serverless client deploy --region us-west-2 && aws cloudfront create-invalidation --distribution-id E13JOGYJXQZL0I --paths \"/*\"",
"client:serve": "live-server --host=localhost --port=3001 client/dist",
"client:webpack": "webpack",
"client": "npm run client:webpack && npm run client:serve",
"lint": "eslint client/**/*.js src/**/*.js",
"lint:fix": "eslint client/**/*.js src/**/*.js --fix",
"eslint-check": "npx eslint-config-prettier .eslintrc.js",
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "serverless offline start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivanoats/SeattleTide.git"
},
"keywords": [
"weather",
"serverless",
"seattle"
],
"author": "Ivan Storck",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivanoats/SeattleTide/issues"
},
"homepage": "https://github.com/ivanoats/SeattleTide#readme",
"dependencies": {
"@babel/core": "^7.20.5",
"babel-loader": "^8.3.0",
"express": "^4.21.2",
"lodash": "^4.17.21",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"serverless-finch": "^4.0.0",
"serverless-http": "^2.7.0"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.20.2",
"ajv": "^8.1.0",
"csv-parse": "^4.15.4",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"got": "^11.8.5",
"live-server": "^1.2.2",
"prettier": "^2.8.0",
"prettier-config-standard": "^4.0.0",
"serve": "^14.1.2",
"serverless-domain-manager": "^5.1.0",
"serverless-offline": "^12.0.3",
"serverless-webpack": "^5.11.0",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.0"
}
}