This repository has been archived by the owner on Mar 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.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
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
107
{
"name": "ui",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"build-storybook": "build-storybook -c .storybook",
"dev": "next dev -H roleypoly.local",
"format": "npm run lint:prettier -- --write",
"lint": "run-p --continue-on-error lint:*",
"lint-staged": "lint-staged",
"lint:css": "cross-env stylelint '**/*.{ts,tsx}'",
"lint:prettier": "cross-env prettier -c '**/*.{ts,tsx,css,yml,yaml,md,json,js,jsx}'",
"lint:tsc": "tsc --noEmit --isolatedModules",
"lint:tslint": "tslint --project .",
"now-build": "build-storybook",
"pre-commit": "lint-staged",
"start": "next start",
"storybook": "start-storybook --port 6001",
"test": "jest --passWithNoTests"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"lint-staged": {
"*.css": [
"stylelint --fix"
],
"*.{js,css,json,md,yml}": [
"prettier --write"
],
"*.{ts,tsx}": [
"jest --bail --findRelatedTests",
"prettier --write",
"tslint --fix"
]
},
"dependencies": {
"@improbable-eng/grpc-web-node-http-transport": "^0.13.0",
"@roleypoly/rpc": "^1.9.2",
"browser-headers": "^0.4.1",
"chroma-js": "^2.1.0",
"dotenv": "^8.2.0",
"google-protobuf": "^3.13.0",
"next": "^9.5.3",
"nookies": "^2.4.0",
"react": "^16.13.1",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.13.1",
"react-icons": "^3.11.0",
"react-perfect-scrollbar": "^1.5.8",
"react-tooltip": "^4.2.9",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-knobs": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/addon-viewport": "^6.0.21",
"@storybook/react": "^6.0.21",
"@types/chroma-js": "^2.0.0",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/google-protobuf": "^3.7.3",
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"@types/react": "^16.9.49",
"@types/react-custom-scrollbars": "^4.0.7",
"@types/react-dom": "^16.9.8",
"@types/react-tooltip": "^4.2.4",
"@types/styled-components": "^5.1.3",
"cross-env": "^7.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"enzyme-to-json": "^3.5.0",
"fork-ts-checker-webpack-plugin": "^5.1.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"jest-styled-components": "^7.0.3",
"lint-staged": "^10.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"prettier-plugin-packagejson": "^2.2.5",
"react-docgen-typescript-loader": "^3.7.2",
"react-test-renderer": "^16.13.1",
"stylelint": "^13.7.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-prettier": "^1.1.2",
"stylelint-processor-styled-components": "^1.10.0",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.0.2"
},
"engines": {
"node": "14.x"
}
}