-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
123 lines (123 loc) · 4 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "project-invoice",
"version": "3.0.18",
"description": "Invoicing without sharing data.",
"keywords": [],
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --hot --env.development",
"build:prod": "webpack -p --env.production",
"build": "run-s i18n icons icomoon markdown:changelog build:prod",
"clean": "rm dist/*",
"serve": "serve dist 1213 security",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"test": "npm run cypress:run",
"version": "next-version package.json",
"icons": "node task/icons --source public/static/img/logo.svg --target public/static/img --sizes 16,32,320x460,48,57,64,72,96,114,144,168,128,192,196,256,512",
"favicon": "svg2png public/static/img/logo.svg --output=public/static/img/favicon.png --width=16 --height=16 --overwrite",
"markdown": "node task/parseMarkdown --source=README.md --target=src/views/About.html",
"markdown:changelog": "node task/parseMarkdown --source=CHANGELOG.md --target=src/views/Changelog.html",
"icomoon": "node task/icomoon --source icomoon.zip --target public/fonts/ --targetFile src/style/_icons.scss",
"faker": "node task/fakeData",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"svg": "svgo -f design",
"sitemap": "node task/sitemap",
"i18n": "node task/i18n-about"
},
"dependencies": {
"animejs": "^2.2.0",
"classnames": "^2.2.6",
"color-js": "^1.0.5",
"core-js": "^3.6.5",
"current-device": "^0.7.2",
"dialog-polyfill": "^0.4.9",
"i18next": "^17.2.0",
"json-parse-better-errors": "^1.0.2",
"lodash": "4.17.21",
"marked": "^0.3.18",
"mc_picker": "^1.1.6",
"moment": "^2.29.4",
"node-sass": "^4.14.1",
"peerjs": "^1.2.0",
"qr-scanner": "sjeiti/qr-scanner#develop",
"qrcode-svg": "^1.1.0",
"react": "16.8.6",
"react-app-polyfill": "^1.0.1",
"react-color": "^2.17.3",
"react-dev-utils": "^11.0.4",
"react-dom": "16.8.6",
"react-hot-loader": "^4.13.1",
"react-i18next": "^10.13.1",
"react-redux": "7.1.0",
"react-router-dom": "5.0.1",
"react-transition-group": "^4.3.0",
"redux": "4.0.1",
"regenerator-runtime": "^0.13.5",
"register-service-worker": "^1.7.2",
"sass.js": "^0.10.9",
"signals": "1.0.0",
"uglify-es": "^3.3.9",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"@babel/core": "^7.6.3",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@cypress/webpack-preprocessor": "^5.1.2",
"adm-zip": "^0.4.11",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.3.0",
"clipboardy": "^2.3.0",
"commander": "^2.14.1",
"copy-webpack-plugin": "^11.0.0",
"crypto-js": "^3.1.9-1",
"css-loader": "^6.7.3",
"cypress-plugin-tab": "^1.0.5",
"eslint": "^7.0.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.1.2",
"faker": "^4.1.0",
"github-release-notes": "^0.17.0",
"html-loader": "^4.2.0",
"jsdom": "^11.6.2",
"lint-staged": "^6.0.0",
"next-version": "^0.11.7",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.2",
"sass-loader": "^13.2.0",
"style-loader": "^1.3.0",
"styled-components": "^4.4.0",
"svg2png": "^4.1.1",
"svgo": "^1.3.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^3.11.0",
"workbox-webpack-plugin": "^6.0.2",
"xml2js": "^0.4.19"
},
"optionalDependencies": {
"cypress": "^6.3.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "npm run version"
}
}