-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.01 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
{
"name": "secret-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write --ignore-path .gitignore .",
"test": "yarn init:test:db & jest --runInBand --detectOpenHandles --forceExit",
"pretest": "yarn start:db:local --force-recreate",
"posttest": "yarn stop:db:local",
"start:db:local": "docker-compose up -d",
"stop:db:local": "docker-compose down -v",
"init:local:db": "node ./scripts/init_db.js local",
"init:test:db": "node ./scripts/init_db.js test",
"init:prod:db": "node ./scripts/init_db.js prod"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.245.0",
"@aws-sdk/lib-dynamodb": "^3.245.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.5",
"@next/font": "13.1.2",
"@polkadot/extension-dapp": "^0.44.8",
"@polkadot/keyring": "^10.2.6",
"@polkadot/util": "^10.2.6",
"@polkadot/util-crypto": "^10.2.6",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"eslint": "8.32.0",
"eslint-config-next": "13.1.2",
"next": "13.1.2",
"next-auth": "^4.18.8",
"node-mocks-http": "^1.12.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"require-json5": "^1.3.0",
"tsconfig-paths-jest": "^0.0.1",
"typescript": "4.9.4"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.5",
"babel-jest": "^29.3.1",
"dotenv": "^16.0.3",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.3.1",
"jsdom": "^21.0.0",
"prettier": "^2.8.3",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1"
},
"engines": {
"node": ">=18"
}
}