This repository has been archived by the owner on Jun 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.62 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
{
"name": "@celo/reserve-web",
"version": "3.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "tsc",
"build:next": "next build",
"deploy": "yarn run kill-dev; yarn run clean-next-cache; yarn run build:next; gcloud app deploy $MANIFEST",
"deploy:stage": "gcloud config set project celo-reserve-site-281118; NODE_ENV=production DEPLOY_ENV=development MANIFEST=stage.yaml yarn run deploy && yarn view -s stage",
"deploy:prod": "gcloud config set project celo-reserve-site-281118; NODE_ENV=production DEPLOY_ENV=production MANIFEST=production.yaml yarn run deploy && yarn view",
"view": "gcloud app browse",
"kill-dev": "kill -9 $(lsof -ti :3000)",
"clean-next-cache": "rm -rf .next",
"postinstall": "yarn keys:decrypt",
"keys:decrypt": "bash scripts/key_placer.sh decrypt",
"keys:encrypt": "bash scripts/key_placer.sh encrypt",
"start": "next start -p $PORT",
"test": "jest",
"lint": "eslint .",
"pretty": "prettier --config .prettierrc 'src/**/*.{ts, tsx}' '*.yaml' --write",
"prepare": "husky install"
},
"dependencies": {
"@celo/contractkit": "2.0.0",
"@emotion/eslint-plugin": "^11.7.0",
"@emotion/react": "^11.7.1",
"bignumber.js": "^9.0.2",
"eslint-plugin-prettier": "^3.4.0",
"fathom-client": "^3.4.0",
"front-matter": "^4.0.2",
"graphql": "^15.7.2",
"graphql-request": "^3.7.0",
"markdown-to-jsx": "^7.1.7",
"mockdate": "^3.0.2",
"next": "^12.0.9",
"node-cache": "^5.1.2",
"raw-loader": "^4.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"swr": "^0.5.6",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/runtime": "^7.8.4",
"@emotion/babel-plugin": "^11.2.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/xml2js": "^0.4.8",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"babel-jest": "^27.0.6",
"codecov": "^3.6.5",
"eslint": "^7.26.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-circus": "^27.0.6",
"jest-snapshot": "^27.0.6",
"lint-staged": ">=10",
"msw": "^0.33.2",
"node-fetch": "^2.6.7",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.1",
"ts-jest": "^27.0.4",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.8.0",
"typescript": "^4.3.5"
},
"engines": {
"node": "14"
},
"lint-staged": {
"*.{ts,tsx,md,yaml}": "prettier --write"
}
}