forked from PreMiD/Presences
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.04 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
{
"name": "presences",
"version": "3.0.0",
"author": "Timeraa",
"license": "MPL-2.0",
"scripts": {
"lint": "eslint --cache --fix . && prettier --cache --write .",
"lint:ci": "eslint --cache . && prettier --cache --check .",
"format": "npm run metadataSorter && npm run lint",
"schemaEnforcer": "npm run format && npm run bumpChanged",
"compileTools": "tsc -p tools/tsconfig.json",
"bumpChanged": "npm run compileTools && node --enable-source-maps tools/bumpChanged.js",
"presenceValidator": "npm run compileTools && node --enable-source-maps tools/auto/presenceValidator.js",
"presenceUpdater": "npm run compileTools && node --enable-source-maps tools/auto/presenceUpdater.js",
"metadataSorter": "npm run compileTools && node --enable-source-maps tools/metadataSorter.js",
"assetsUpdater": "npm run compileTools && node --enable-source-maps tools/auto/assetsUpdater.js",
"compile": "npm run compileTools && node --enable-source-maps tools/auto/compileChanged.js",
"prepare": "husky install",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"devDependencies": {
"@actions/core": "1.10.0",
"@types/glob": "8.0.0",
"@types/json-to-ast": "2.1.2",
"@types/mime-types": "^2.1.1",
"@types/semver": "7.3.13",
"chalk": "5.2.0",
"copy-webpack-plugin": "11.0.0",
"dotenv": "16.0.3",
"form-data": "^4.0.0",
"glob": "8.0.3",
"got": "12.5.3",
"json-to-ast": "2.1.0",
"jsonschema": "1.4.1",
"mime-types": "^2.1.35",
"mongodb": "4.17.0",
"semver": "7.5.2",
"sharp": "^0.32.6",
"ts-loader": "9.4.2",
"typescript": "4.9.4",
"webpack": "5.76.0"
},
"dependencies": {
"@commitlint/cli": "17.3.0",
"@commitlint/config-angular": "17.3.0",
"@types/chrome": "0.0.204",
"@types/node": "18.11.15",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-no-one-time-vars": "2.5.0",
"eslint-plugin-unicorn": "45.0.2",
"husky": "8.0.2",
"pmd": "github:PreMiD/pmd#1.3.2",
"prettier": "2.8.1"
}
}