-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.19 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
93
94
95
96
97
98
99
{
"name": "actnow_email",
"version": "0.0.1",
"description": "Create email templates and share them with others; supports contact data backends.",
"scripts": {
"prebuild": "npm run clean",
"build": "npm run lint && webpack",
"build-deploy": "npm run build && npm run deploy",
"deploy": "rsync -avzhe ssh --progress ./dist/* cont2:/home/kevin/actnow_email/",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"clean": "rm -rf dist",
"start": "webpack serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kappelmann/actnow_email.git"
},
"keywords": [],
"author": "Kevin Kappelmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/kappelmann/actnow_email/issues"
},
"homepage": "https://github.com/kappelmann/actnow_email#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-brands-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.1.17",
"@kashuab/react-share": "^4.3.1",
"@react-hook/window-size": "^3.0.7",
"@types/file-saver": "^2.0.5",
"@types/qrcode.react": "^1.0.2",
"@types/qs": "^6.9.7",
"@types/react": "^16.3.0",
"@types/react-bootstrap": "^0.32.0",
"@types/react-dom": "^16.3.0",
"@types/react-router-dom": "^5.3.0",
"@types/react-table": "^7.7.9",
"@types/smoothscroll-polyfill": "^0.3.1",
"@types/sql.js": "^1.4.3",
"@types/styled-components": "^5.1.0",
"axios": "^0.25.0",
"bootstrap": "^4.6.0",
"buffer": "^6.0.3",
"clipboard-polyfill": "^3.0.3",
"copy-to-clipboard": "^3.3.1",
"crypto-browserify": "^3.12.0",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"i18next": "^21.6.11",
"i18next-browser-languagedetector": "^6.1.3",
"jquery": "^3.6.0",
"popper.js": "^1.16.1",
"qrcode.react": "^1.0.1",
"qs": "^6.10.3",
"react": "^16.3.0",
"react-bootstrap": "^1.6.0",
"react-country-flag": "^3.0.2",
"react-dom": "^16.3.0",
"react-i18next": "^11.15.4",
"react-router-dom": "^5.3.0",
"react-select": "^5.2.2",
"react-table": "^7.7.0",
"sass": "^1.75.0",
"smoothscroll-polyfill": "^0.4.4",
"sql.js": "1.4.0",
"stream-browserify": "^3.0.0",
"styled-components": "^5.3.3",
"use-throttled-effect": "0.0.7"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.6.0",
"eslint": "^8.8.0",
"eslint-plugin-react": "^7.28.0",
"html-webpack-plugin": "^5.5.0",
"path": "^0.12.7",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}