-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.89 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
{
"name": "pingit-to",
"version": "1.0.0",
"description": "Web application allowing easy sending/receiving of URLs using QR Codes",
"homepage": "https://pingit.to/",
"author": "Alistair Shepherd <[email protected]>",
"repository": "github:accudio/pingit.to",
"license": "MPL-2.0",
"scripts": {
"postinstall": "run-p symlink",
"symlink": "run-p symlink:*",
"symlink:desktop": "symlink-dir common/ desktop/@common",
"symlink:mobile": "symlink-dir common/ mobile/@common",
"dev:desktop": "cd desktop && next -p 3000",
"build:desktop": "cd desktop && next build && next export -o build",
"start:desktop": "cd desktop && cross-env NODE_ENV=production next start",
"dev:mobile": "cd mobile && next -p 3001",
"build:mobile": "cd mobile && next build && next export -o build",
"start:mobile": "cd mobile && cross-env NODE_ENV=production next start",
"compile:chrome": "cross-env MODE=extension npm run build:desktop && ./chrome/build.sh",
"compile:firefox": "cross-env MODE=extension npm run build:desktop && ./firefox/build.sh && npm run export:firefox",
"export:firefox": "cd firefox && node sign.js",
"dev": "run-p --print-label dev:*",
"build": "run-p --print-label build:*",
"start": "run-p --print-label start:*",
"deploy": "run-p --print-label deploy:*",
"update:cssdb": "npx browserslist@latest --update-db",
"lint": "run-p lint:*",
"lint:js": "eslint --ignore-path .gitignore \"**/*.js\"",
"lint:css": "stylelint --ignore-path .gitignore \"**/*.scss\"",
"fix": "run-p fix:*",
"fix:js": "eslint --ignore-path .gitignore \"**/*.js\" --fix",
"fix:css": "stylelint --ignore-path .gitignore \"**/*.scss\" --fix"
},
"devDependencies": {
"cross-env": "^7.0.2",
"eslint": "^7.12.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.0.1",
"stylelint": "^13.7.2",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-scss": "^3.18.0"
},
"dependencies": {
"@prefresh/next": "^1.3.0",
"archiver": "^5.3.0",
"dotenv": "^10.0.0",
"fs-extra": "^8.1.0",
"gorko": "^0.2.3",
"next": "^9.5.5",
"next-compose-plugins": "^2.2.0",
"next-google-fonts": "^1.2.1",
"next-pwa": "^3.1.5",
"node-sass-magic-importer": "^5.3.2",
"npm-run-all": "^4.1.5",
"peerjs": "^1.3.1",
"preact": "^10.5.4",
"preact-render-to-string": "^5.1.10",
"qrcode.react": "^1.0.0",
"react": "npm:@preact/compat@^0.0.3",
"react-dom": "npm:@preact/compat@^0.0.3",
"react-qr-reader": "^2.2.1",
"react-ssr-prepass": "npm:preact-ssr-prepass@^1.1.2",
"replace-in-file": "^6.2.0",
"sass": "^1.27.0",
"sign-addon": "^3.5.0",
"symlink-dir": "^4.1.0"
}
}