-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
106 lines (106 loc) · 3.37 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "bird-count",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "export NEXT_PUBLIC_COMMIT_HASH=$(git rev-parse HEAD) && lingui compile && next dev",
"build": "export NEXT_PUBLIC_COMMIT_HASH=$(git rev-parse HEAD) && lingui compile && next build",
"export": "next export",
"start": "next start",
"lingui": "lingui extract --clean --overwrite && lingui compile",
"lint": "next lint",
"olint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint \"./**/*.{ts,tsx}\"",
"lint:fix": "eslint \"./**/*.{ts,tsx}\" --fix",
"lint:prettier": "prettier --check \"./**/*.{ts,tsx}\" *.js",
"lint:prettier:fix": "prettier --write \"./**/*.{ts,tsx}\" *.js",
"test": "jest && clarinet test tests/*.ts"
},
"dependencies": {
"@babel/core": "^7.15.5",
"@clarigen/core": "^0.3.2",
"@clarigen/web": "^0.3.3",
"@micro-stacks/nextjs": "0.0.10",
"@micro-stacks/query": "0.0.8",
"@micro-stacks/react": "0.0.8",
"@mui/icons-material": "^5.1.1",
"@mui/lab": "^5.0.0-alpha.55",
"@mui/material": "^5.1.1",
"@mui/styled-engine": "npm:@mui/styled-engine-sc@next",
"@mui/styled-engine-sc": "^5.1.0",
"@mui/system": "^5.1.1",
"dayjs": "^1.10.7",
"fast-deep-equal": "3.1.3",
"formik": "^2.2.9",
"formik-mui": "^4.0.0-alpha.3",
"jotai": "1.4.3",
"jotai-query-toolkit": "0.1.18",
"make-plural": "7.0.0",
"micro-stacks": "0.1.2",
"next": "12.0.4",
"qs": "^6.10.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "^17.0.2",
"react-query": "3.33.1",
"react-router-dom": "^5.3.0",
"styled-components": "^5.3.1",
"stylis-plugin-rtl": "^2.1.1",
"yup": "^0.32.11"
},
"resolutions": {
"@mui/styled-engine": "npm:@mui/styled-engine-sc@next",
"jotai": "npm:[email protected]"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"parserOptions": {
"project": [
"./tsconfig.json"
]
}
},
"prettier": "@stacks/prettier-config",
"devDependencies": {
"@babel/plugin-transform-react-jsx-source": "^7.14.5",
"@clarigen/cli": "^0.3.3",
"@clarigen/node": "^0.3.3",
"@clarigen/test": "^0.3.3",
"@lingui/cli": "^3.12.1",
"@lingui/core": "^3.12.1",
"@lingui/loader": "^3.12.1",
"@lingui/macro": "^3.12.1",
"@lingui/react": "^3.12.1",
"@lingui/remote-loader": "^3.11.0",
"@stacks/prettier-config": "0.0.9",
"@stacks/stacks-blockchain-api-types": "^0.71.2",
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.8",
"@types/qs": "^6.9.7",
"@types/react": "17.0.35",
"@types/react-router-dom": "^5.3.0",
"@types/styled-components": "^5.1.14",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@welldone-software/why-did-you-render": "^6.2.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "^7.32.0",
"eslint-config-next": "12.0.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.2.0",
"next-transpile-modules": "^9.0.0",
"prettier": "2.4.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"typescript": "4.5.2"
}
}