-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.72 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.72 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
{
"name": "sourdough-times",
"version": "1.0.0",
"main": "index.js",
"author": "Andreja Kogovsek <andreja.kogovsek1@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "run-p dev:**",
"dev:app": "ts-node scripts/runDevServer.ts",
"dev:lambda": "netlify-lambda serve src/lambda",
"serve:app": "parcel src/index.html --open",
"serve:lambda": "netlify-lambda serve src/lambda",
"build": "run-p build:**",
"build:app": "parcel build src/index.html",
"build:lambda": "netlify-lambda build src/lambda",
"clean": "rm -rf dist",
"lint": "eslint --ext ts,tsx src"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/aws-lambda": "^8.10.53",
"@types/express": "^4.17.6",
"@types/lodash": "^4.14.157",
"@types/node": "^14.0.11",
"@types/parcel-bundler": "^1.12.1",
"@types/react": "^16.9.35",
"@types/react-datepicker": "^3.0.2",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"eslint-plugin-react": "^7.20.0",
"http-proxy-middleware": "^1.0.4",
"netlify-lambda": "^1.6.3",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"dependencies": {
"aws-lambda": "^1.0.6",
"formik": "^2.1.4",
"immer": "^7.0.0",
"moment": "^2.26.0",
"react": "^16.13.1",
"react-datepicker": "^3.1.3",
"react-dom": "^16.13.1",
"styled-components": "^5.1.1"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
]
}
}