-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.81 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
{
"name": "chaton",
"version": "0.1.0",
"description": "A 1:1 video chat",
"private": true,
"keywords": [
"chat",
"1:1",
"meeting",
"video",
"video-chat",
"parcel"
],
"author": "Kevin Py",
"license": "MIT",
"scripts": {
"preinstall": "npx npm-force-resolutions",
"start": "parcel src/index.html",
"start:remote": "npm run build:remote && firebase serve --only hosting",
"clean": "rm -rf .cache && rm -rf dist",
"build": "parcel build src/index.html",
"build:remote": "NODE_ENV=production npm run clean && npm run build -- --public-url http://localhost:5000 && npm run sw",
"build:prod": "NODE_ENV=production npm run clean && npm run build -- --public-url https://chaton.io && npm run sw",
"commit": "cz",
"lint": "eslint src/**/*.ts",
"deploy": "npm run build:prod && firebase deploy",
"release": "standard-version",
"version:patch": "npm version patch && npm run release",
"version:minor": "npm version minor && npm run release",
"version:major": "npm version major && npm run release",
"sw": "workbox generateSW workbox-config.js"
},
"dependencies": {
"@pyxeldev/reset-css": "^1.1.0",
"dotenv": "^8.2.0",
"firebase": "^8.2.1"
},
"devDependencies": {
"@types/firebase": "^3.2.1",
"@types/node": "^14.14.19",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.17.0",
"node-sass": "^5.0.0",
"parcel-bundler": "^1.12.4",
"standard-version": "^9.1.0",
"typescript": "^4.1.3",
"workbox-cli": "^6.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"node-forge": "0.10.0"
}
}