shipnow-apolo 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +41 -0
- package/dist/index.es.js +135304 -0
- package/dist/index.js +135424 -0
- package/package.json +117 -0
package/package.json
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shipnow-apolo",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Shipnow's Design System implemented in React",
|
|
5
|
+
"contributors": [
|
|
6
|
+
{
|
|
7
|
+
"name": "Shipnow Developers",
|
|
8
|
+
"email": "frontend@shipnow.com.ar",
|
|
9
|
+
"url": "http://www.shipnow.com.ar"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"moduleDirectories": [
|
|
13
|
+
"node_modules",
|
|
14
|
+
"src"
|
|
15
|
+
],
|
|
16
|
+
"license": "UNLICENSED",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+ssh://git@gitlab.com/shipnow/shipnow-apolo.git"
|
|
20
|
+
},
|
|
21
|
+
"main": "dist/index.js",
|
|
22
|
+
"module": "dist/index.es.js",
|
|
23
|
+
"jsnext:main": "dist/index.es.js",
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build-css": "sass src/:src/ --load-path=./src --load-path=./node_modules --no-source-map",
|
|
26
|
+
"watch-css": "npm run build-css && sass src/:src/ --load-path=./src --load-path=./node_modules --watch --no-source-map",
|
|
27
|
+
"test": "react-scripts test --watchAll=false .test.js",
|
|
28
|
+
"test:watch": "jest src/components/_tests_/*.test.j",
|
|
29
|
+
"rollup": "rollup -c",
|
|
30
|
+
"rollup watch": "rollup -c --watch",
|
|
31
|
+
"dev": "npm-run-all -p watch-css rollup-watch",
|
|
32
|
+
"build": "npm-run-all build-css rollup",
|
|
33
|
+
"start-rollup": "rollup -c -w",
|
|
34
|
+
"start": "npm run storybook",
|
|
35
|
+
"prepare": "npm run build",
|
|
36
|
+
"storybook-js": "storybook dev -p 6006",
|
|
37
|
+
"storybook": "npm run storybook-js",
|
|
38
|
+
"build-storybook": "storybook build",
|
|
39
|
+
"lint": "eslint --ext js,jsx ."
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@emotion/react": "^11.9.0",
|
|
43
|
+
"@emotion/styled": "^11.8.1",
|
|
44
|
+
"@fortawesome/fontawesome-pro": "^6.0.0",
|
|
45
|
+
"@fortawesome/fontawesome-svg-core": "^1.3.0",
|
|
46
|
+
"@fortawesome/pro-duotone-svg-icons": "^6.1.1",
|
|
47
|
+
"@fortawesome/pro-light-svg-icons": "^6.0.0",
|
|
48
|
+
"@fortawesome/pro-regular-svg-icons": "^6.0.0",
|
|
49
|
+
"@fortawesome/pro-solid-svg-icons": "^6.1.1",
|
|
50
|
+
"@fortawesome/react-fontawesome": "^0.1.17",
|
|
51
|
+
"@mui/material": "5.11.16",
|
|
52
|
+
"@mui/x-date-pickers": "^5.0.3",
|
|
53
|
+
"@sentry/browser": "^5.26.0",
|
|
54
|
+
"bulma": "0.6.2",
|
|
55
|
+
"classnames": "^2.2.6",
|
|
56
|
+
"core-js": "^3.6.5",
|
|
57
|
+
"formik": "^2.2.9",
|
|
58
|
+
"libphonenumber-js": "^1.12.8",
|
|
59
|
+
"lodash": "^4.17.20",
|
|
60
|
+
"moment": "^2.29.4",
|
|
61
|
+
"prop-types": "15.8.1",
|
|
62
|
+
"react": "^17.0.2",
|
|
63
|
+
"react-dom": "^17.0.2",
|
|
64
|
+
"react-dropzone": "^14.3.8",
|
|
65
|
+
"react-flagkit": "^2.0.4",
|
|
66
|
+
"whatwg-fetch": "^3.6.20",
|
|
67
|
+
"yup": "^1.7.1"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@babel/core": "^7.11.6",
|
|
71
|
+
"@babel/plugin-external-helpers": "^7.10.4",
|
|
72
|
+
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
73
|
+
"@babel/plugin-transform-modules-commonjs": "^7.15.0",
|
|
74
|
+
"@babel/preset-env": "^7.12.0",
|
|
75
|
+
"@babel/preset-react": "^7.10.4",
|
|
76
|
+
"@babel/runtime-corejs3": "^7.12.0",
|
|
77
|
+
"@rollup/plugin-babel": "^5.2.1",
|
|
78
|
+
"@rollup/plugin-commonjs": "^15.1.0",
|
|
79
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
80
|
+
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
81
|
+
"@rollup/plugin-url": "^5.0.1",
|
|
82
|
+
"@storybook/addon-actions": "^7.6.20",
|
|
83
|
+
"@storybook/addon-essentials": "^7.6.20",
|
|
84
|
+
"@storybook/addon-links": "^7.6.20",
|
|
85
|
+
"@storybook/react": "^7.6.20",
|
|
86
|
+
"@storybook/react-webpack5": "^7.6.20",
|
|
87
|
+
"storybook": "^7.6.20",
|
|
88
|
+
"@testing-library/jest-dom": "^5.14.1",
|
|
89
|
+
"@testing-library/react": "^12.0.0",
|
|
90
|
+
"ajv": "^6.12.6",
|
|
91
|
+
"babel-plugin-transform-decorators-legacy": "^1.3.5",
|
|
92
|
+
"eslint-config-prettier": "^6.12.0",
|
|
93
|
+
"eslint-plugin-prettier": "^3.1.4",
|
|
94
|
+
"jest": "24.9.0",
|
|
95
|
+
"jest-cli": "24.9.0",
|
|
96
|
+
"json-loader": "^0.5.7",
|
|
97
|
+
"leaflet": "^1.7.1",
|
|
98
|
+
"npm-run-all": "^4.1.5",
|
|
99
|
+
"prettier": "^2.1.2",
|
|
100
|
+
"react-leaflet": "^2.7.0",
|
|
101
|
+
"react-router-dom": "^5.2.0",
|
|
102
|
+
"react-scripts": "5.0.1",
|
|
103
|
+
"rollup": "^2.30.0",
|
|
104
|
+
"rollup-plugin-peer-deps-external": "^2.2.3",
|
|
105
|
+
"rollup-plugin-postcss": "^3.1.8",
|
|
106
|
+
"sass": "^1.49.9"
|
|
107
|
+
},
|
|
108
|
+
"engines": {
|
|
109
|
+
"node": "24.12.0"
|
|
110
|
+
},
|
|
111
|
+
"files": [
|
|
112
|
+
"dist"
|
|
113
|
+
],
|
|
114
|
+
"publishConfig": {
|
|
115
|
+
"access": "public"
|
|
116
|
+
}
|
|
117
|
+
}
|