-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.88 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.88 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "capital-ui",
"version": "1.0.0",
"description": "Capital UI",
"author": "ClearSpend",
"license": "ISC",
"private": true,
"scripts": {
"analyze": "webpack --mode production --env analyzer=default",
"build": "webpack --mode production",
"generate": "node ./scripts/generateTypes.ts",
"lint:css": "stylelint --cache \"src/**/*.css\"",
"lint:ts": "eslint --ext .ts,.tsx src/ --cache --max-warnings 0",
"lint": "npm run lint:ts && npm run lint:css",
"prepare": "husky install",
"sb:build": "build-storybook",
"sb": "start-storybook -p 6006",
"set-env": "./scripts/env.sh",
"start": "webpack-dev-server --mode development --open --hot",
"statoscope": "webpack --mode production --env analyzer=statoscope",
"test": "uvu -r module-alias/register -r solid-register src .+\\.test\\.tsx?$"
},
"dependencies": {
"@formatjs/intl-listformat": "7.0.1",
"@formatjs/intl-locale": "3.0.1",
"@fullstory/browser": "^1.5.1",
"@solid-primitives/debounce": "1.3.0",
"@stripe/stripe-js": "^1.22.0",
"colord": "2.9.2",
"core-js": "3.22.6",
"date-func": "0.3.0",
"launchdarkly-js-client-sdk": "^2.21.0",
"micro-charts": "7.5.0",
"mixpanel-browser": "^2.42.0",
"nanoid": "3.3.4",
"pdfjs-dist": "2.14.305",
"solid-app-router": "0.3.3",
"solid-create-form": "1.1.0",
"solid-i18n": "1.0.2",
"solid-js": "1.4.2",
"solid-proxies": "^0.3.0",
"solid-slider": "^1.3.2",
"solid-transition-group": "0.0.8",
"solid-use-script": "0.0.1"
},
"devDependencies": {
"@prettier/plugin-xml": "2.2.0",
"@statoscope/webpack-plugin": "5.20.1",
"@storybook/addon-actions": "6.5.4",
"@storybook/addon-essentials": "6.5.4",
"@storybook/addon-links": "6.5.4",
"@storybook/builder-webpack5": "6.5.4",
"@storybook/html": "6.5.4",
"@storybook/manager-webpack5": "6.5.4",
"@types/intercom-web": "^2.8.18",
"@types/mixpanel-browser": "^2.35.8",
"@typescript-eslint/eslint-plugin": "5.25.0",
"@typescript-eslint/parser": "5.25.0",
"@vue/preload-webpack-plugin": "2.0.0",
"autoprefixer": "10.4.7",
"babel-loader": "8.2.5",
"babel-plugin-polyfill-corejs3": "0.5.2",
"babel-preset-solid": "1.4.2",
"circular-dependency-plugin": "5.2.2",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "4.0.0",
"dotenv": "16.0.1",
"eslint": "8.16.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-css-modules": "2.11.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-solid": "0.4.7",
"eslint-webpack-plugin": "3.1.1",
"fork-ts-checker-webpack-plugin": "7.2.11",
"glob": "8.0.3",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.1",
"jsdom": "19.0.0",
"matchmedia-polyfill": "0.3.2",
"mini-css-extract-plugin": "2.6.0",
"module-alias": "2.2.2",
"nano-staged": "0.8.0",
"postcss": "8.4.14",
"postcss-custom-media": "8.0.0",
"postcss-loader": "7.0.0",
"postcss-nesting": "10.1.7",
"prettier": "2.6.2",
"snoop": "1.0.4",
"solid-register": "0.2.5",
"solid-testing-library": "0.3.0",
"style-loader": "3.3.1",
"stylelint": "14.8.3",
"stylelint-order": "5.0.0",
"swagger-typescript-api": "9.3.1",
"ts-loader": "9.3.0",
"typescript": "4.6.4",
"uvu": "0.5.3",
"webpack": "5.72.1",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.9.0",
"webpack-subresource-integrity": "5.1.0"
},
"browserslist": [
"Chrome >= 70",
"Safari >= 13.1",
"iOS >= 13.4",
"Firefox >= 69",
"Edge >= 79",
"Samsung >= 12"
],
"_moduleDirectories": [
"src"
],
"nano-staged": {
"src/**/*.{ts,tsx}": "eslint --cache --fix",
"src/**/*.css": "stylelint --fix",
"*.{js,ts,tsx,json,css,html,svg}": "prettier --write"
}
}