-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.25 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
{
"name": "covid-groups",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "jest scripts/*.test.ts",
"clean": "rm -rf node_modules || true && rm -rf client/node_modules || true && rm -rf lambdas/node_modules",
"preinstall": "cd client && yarn install && cd ../lambdas; yarn install",
"db:setup": "cd lambdas && yarn sls dynamodb install",
"db:remove": "cd lambdas && sls dynamodb remove",
"start:db": "cd lambdas && yarn sls dynamodb start",
"start:client": "cd client; yarn start",
"start:lambda": "cd lambdas; yarn start",
"start": "run-p start:client start:lambda start:db",
"backup": "cd lambdas && sls invoke --stage dev -f getGroups > ../groups.json"
},
"repository": "https://github.com/Covid-Mutual-Aid/search-by-postcode.git",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.9.1",
"axios": "^0.19.2",
"npm-run-all": "^4.1.5",
"typescript": "^3.8.3"
},
"jest": {
"preset": "ts-jest"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100
},
"dependencies": {
"@babel/helper-call-delegate": "^7.8.7",
"jest": "^25.3.0",
"ts-jest": "^25.3.1"
}
}