-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.65 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
{
"name": "root",
"version": "1.0.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/caffeinalab/aeria-client.git"
},
"contributors": [
"Andrea 'Fiad' Fiadone <[email protected]> (https://github.com/fiadone)",
"Alberto Parziale <[email protected]> (https://github.com/lavolpecheprogramma)",
"Stefano Iachetta <[email protected]> (https://github.com/stfn00)"
],
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@storybook/addon-actions": "^5.3.7",
"@storybook/addon-docs": "^5.3.7",
"@storybook/addon-knobs": "^5.3.7",
"@storybook/addon-viewport": "^5.3.7",
"@storybook/react": "^5.3.7",
"babel-loader": "^8.0.6",
"core-js": "^3.6.4",
"css-loader": "^3.4.2",
"jsdoc-api": "^5.0.4",
"lerna": "^4.0.0",
"nunjucks": "^3.2.0",
"style-loader": "^1.1.3",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@kunukn/react-collapse": "^2.2.7",
"@react-google-maps/api": "^1.8.2",
"array-move": "^2.2.1",
"axios": "^0.21.2",
"body-scroll-lock": "^2.6.4",
"focus-trap-react": "^6.0.0",
"klona": "^1.1.1",
"lodash.isempty": "^4.4.0",
"moment": "^2.24.0",
"polished": "^3.4.2",
"prop-types": "^15.7.2",
"quill": "^1.3.7",
"react": "^16.12.0",
"react-dates": "^21.7.0",
"react-day-picker": "^7.4.0",
"react-dom": "^16.12.0",
"react-geocode": "^0.2.1",
"react-google-autocomplete": "^1.1.2",
"react-google-maps": "^9.4.5",
"react-router-dom": "^5.1.2",
"react-select": "^3.0.8",
"react-sortable-hoc": "^1.11.0",
"styled-components": "^5.0.0",
"styled-components-grid": "^2.2.2",
"styled-components-theme": "^1.0.5",
"styled-map": "^3.3.0",
"uuid": "^3.4.0"
},
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"init:packages": "yarn install && yarn run bootstrap",
"init": "yarn run init:packages",
"build:packages": "yarn run init:packages && webpack --progress",
"build:storybook": "build-storybook -o docs",
"build": "yarn run build:packages && yarn run build:storybook",
"dev": "yarn run bootstrap && yarn storybook",
"version": "yarn run build:packages",
"publish": "lerna publish",
"storybook": "NODE_ENV=development start-storybook -p 6006 -s ./stories/public"
}
}