-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 3 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
{
"name": "tella-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint './**/*.{ts,tsx}'",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"storybook": "start-storybook -p 9011 -s ./public -c ./.storybook/",
"build-storybook": "build-storybook -c .storybook -o .out -s ./public",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "jest",
"chromatic": "chromatic"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@fontsource/open-sans": "^4.0.1",
"@improbable-eng/grpc-web-node-http-transport": "^0.13.0",
"@react-icons/all-files": "^4.1.0",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.1.10",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/postcss7-compat": "^2.0.3",
"@types/qrcode": "^1.4.0",
"autoprefixer": "^9.8.6",
"btoa": "^1.2.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"classnames": "^2.2.6",
"express": "^4.17.1",
"filesize.js": "^2.0.0",
"moment": "^2.29.1",
"namor": "^2.0.2",
"next": "10.0.3",
"ol": "^6.5.0",
"path-to-regexp": "^6.2.0",
"postcss": "^7.0.35",
"postcss-import": "^12.0.0",
"qrcode": "^1.4.4",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-openlayers": "^0.3.0",
"react-table": "^7.6.2",
"reflect-metadata": "^0.1.13",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.3",
"ts-proto": "^1.73.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.13.15",
"@testing-library/dom": "^7.28.1",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/btoa": "^1.2.3",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.16",
"@types/next": "^9.0.0",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/react-table": "^7.0.26",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.0.0",
"chromatic": "^5.4.0",
"cypress": "^6.0.1",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest-dom": "^3.6.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"typescript": "^4.1.2"
}
}