-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "pizza-tracker",
"private": true,
"version": "2.0.0",
"description": "__Pizza Tracker__ Track the pizza you eat over the year !",
"homepage": "https://platane.github.io/pizza-tracker",
"author": {
"name": "platane",
"email": "[email protected]",
"twitter": "platane_"
},
"engines": {
"node": "12"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.4",
"@babel/node": "7.8.4",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-modules-commonjs": "7.8.3",
"@babel/preset-env": "7.8.4",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "7.8.3",
"@emotion/babel-preset-css-prop": "10.0.27",
"@types/aws-lambda": "8.10.40",
"@types/jest": "25.1.2",
"@types/node": "13.7.0",
"@types/react": "16.9.19",
"@zeit/ncc": "0.21.0",
"aws-lambda": "1.0.5",
"babel-jest": "25.1.0",
"babel-plugin-inline-dotenv": "1.5.0",
"babel-plugin-inline-import": "3.0.0",
"dotenv": "8.2.0",
"jest": "25.1.0",
"node-fetch": "2.6.0",
"nodemon": "2.0.2",
"prettier": "1.19.1",
"serverless": "1.63.0",
"serverless-apigw-binary": "0.4.4",
"ts-jest": "25.2.0",
"typescript": "3.7.5"
},
"dependencies": {},
"workspaces": [
"crawler",
"polyfill",
"entities",
"chart-renderer",
"pizza-drawer",
"app"
],
"scripts": {
"dev": "( cd app ; yarn dev )",
"lint": "yarn prettier -c '**/*.{ts,tsx,js,jsx,json,md}' '!dist/**'",
"type": "tsc --noEmit",
"test": "jest --passWithNoTests",
"deploy": "serverless deploy",
"build": "rm -rf dist ; ( cd app ; yarn build ) ;( cd crawler ; yarn build )"
}
}