-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 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
{
"name": "platform-app-debug",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"server": "node server",
"build": "next build",
"start": "next start",
"format:check": "prettier --check 'src/**' 'pages/**'",
"format:fix": "prettier --write 'src/**' 'pages/**'",
"lint:check": "eslint --cache src/** pages/**",
"lint:fix": "eslint --cache --fix src/** pages/**",
"typecheck": "tsc --p . --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@giphy/js-fetch-api": "^4.1.2",
"@giphy/react-components": "^5.4.0",
"@ledgerhq/live-app-sdk": "^0.4.0",
"@ledgerhq/react-ui": "^0.6.0",
"@types/lodash": "^4.14.178",
"ace-builds": "^1.4.12",
"gun": "^0.2020.1235",
"linkify-react": "^3.0.4",
"linkifyjs": "^3.0.4",
"lodash": "^4.17.21",
"modern-normalize": "^1.1.0",
"next": "12.1.0",
"next-i18next": "^10.0.1",
"qrcode-generator": "^1.4.4",
"react": "17.0.2",
"react-ace": "^9.4.3",
"react-dom": "17.0.2",
"react-select": "^4.3.1",
"react-split-pane": "^0.1.92",
"react-switch": "^6.0.0",
"rxjs": "^7.4.0",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@types/react": "17.0.21",
"@types/react-select": "^4.0.17",
"@types/styled-components": "^5.1.14",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "^7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"next-transpile-modules": "^9.0.0",
"prettier": "^2.4.1",
"typescript": "4.4.3",
"workbox-webpack-plugin": "^6.4.2"
},
"lint-staged": {
"*.ts": "yarn run lint:fix"
}
}