forked from aruzikulov/platform-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.06 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
{
"name": "@neufund/design-system",
"description": "Design System",
"sideEffects": [
"*.sideEffect.*",
"*.scss",
"*.css"
],
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --config ./webpack/webpack.config.js",
"build:analyze": "NODE_ENV=production webpack --config webpack/webpack.config.js --analyze=static",
"format": "prettier --list-different '**/*.{ts,tsx,js,json,md,gql}'",
"format:fix": "prettier --write '**/*.{ts,tsx,js,json,md,gql}'",
"lint": "yarn format && yarn tslint && yarn sasslint && yarn tsc",
"lint:fix": "concurrently -p \"[{name}]\" -n \"TSLINT/PRETTIER,SASS/TSC/INTL\" -c \"bgYellow.bold,bgMagenta.bold\" \"yarn tslint:fix && yarn format:fix\" \"yarn sasslint && yarn tsc\"",
"prepare": "yarn build",
"sasslint": "sass-lint -c .sass-lint.yml -v -q",
"storybook": "start-storybook -s ./src/assets -p 9002",
"storybook:build": "build-storybook -s ./src/assets",
"tsc": "tsc --noEmit",
"tslint": "tslint --project ./tsconfig.json --format stylish",
"tslint:fix": "yarn tslint --fix"
},
"devDependencies": {
"bignumber.js": "^5.0.0",
"@neufund/shared-utils": "^1.0.0",
"@storybook/addon-a11y": "^5.3.7",
"@storybook/addon-actions": "^5.3.8",
"@storybook/react": "^5.3.6",
"@types/react-table": "^7.0.6",
"@types/react-virtualized-select": "^3.0.7",
"babel-loader": "^8.0.6",
"bootstrap": "^4.4.1",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"file-loader": "^5.0.2",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"raw-loader": "^4.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.0.0",
"react-intl": "^2.4.0",
"react-intl-phraseapp": "^0.2.4",
"react-virtualized-select": "^3.1.3",
"reactstrap": "^8.4.0",
"sass-lint": "^1.13.1",
"sass-loader": "^8.0.2",
"sass-resources-loader": "^2.0.1",
"storybook-addon-intl": "^2.4.1",
"storybook-readme": "^5.0.8",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"ts-loader": "^6.2.1",
"tslint": "^6.1.2",
"typescript": "^3.7.5",
"url-loader": "^3.0.0",
"webpack-bundle-analyzer": "^3.6.0",
"yup": "^0.26.7"
},
"peerDependencies": {
"bignumber.js": "^5.0.0",
"@neufund/shared-utils": "^1.0.0",
"bootstrap": "^4.4.1",
"classnames": "^2.2.6",
"formik": "^2.1.4",
"lodash": "^4.17.11",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.0.0",
"react-intl": "^2.4.0",
"reactstrap": "^8.4.0",
"react-intl-phraseapp": "^0.2.4",
"react-select": "^1.2.1",
"yup": "^0.26.7"
},
"dependencies": {
"react-table": "^7.0.0-rc.16",
"react-virtualized-select": "^3.1.3",
"react-virtualized": "^9.18.5",
"focus-visible": "^5.0.2"
}
}