This repository was archived by the owner on Nov 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.76 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.76 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
{
"name": "flock-eco",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"generate": "lerna run generate --parallel",
"prettier": "npm run prettier:check",
"prettier:check": "prettier --check **/src/**/*.{js,jsx,ts,tsx,html,json}",
"prettier:fix": "prettier --write **/src/**/*.{js,jsx,ts,tsx,html,json}",
"lint": "eslint . --ext .ts",
"start": "cd ./eco-application/eco-application-example && webpack-dev-server --mode development --config ../../eco-webpack/webpack.config.js",
"start:example": "lerna run start --scope @flock-community/flock-eco-application-example",
"compile": "lerna run compile --parallel",
"build": "lerna run build --parallel",
"storybook": "start-storybook",
"publish": "lerna publish from-package --yes --no-verify-access"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@babel/runtime": "^7.16.7",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/styles": "^4.11.4",
"@types/react": "^16.9.34",
"@types/yup": "^0.29.13",
"apollo": "^2.33.9",
"apollo-boost": "^0.4.7",
"babel-polyfill": "^6.26.0",
"classnames": "^2.3.1",
"clsx": "^1.0.4",
"formik": "^2.2.6",
"formik-material-ui": "0.0.22",
"graphql": "^14.0.0",
"graphql-tag": "^2.10.3",
"i18next": "^21.6.4",
"kotlin": "^1.6.10",
"@flock/pass-garble": "0.0.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-i18next": "^11.15.2",
"react-material-ui-form-validator": "^2.0.8",
"react-password-strength-bar": "0.4.1",
"react-router-dom": "^5.0.1",
"react-select": "^3.0.5",
"react-select-material-ui": "^6.0.0",
"styled-components": "~5.3.3",
"typescript": "^4.5.4",
"whatwg-fetch": "^3.0.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@flock/graphql-simple-bindings": "^1.0.8",
"@storybook/react": "^6.4.9",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"babel-loader": "^8.0.6",
"eslint": "^8.6.0",
"lerna": "^3.22.1",
"prettier": "2.6.2",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.11.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"semi": false,
"bracketSpacing": false
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/flock-community",
"access": "public"
}
}