-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.79 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
{
"name": "anita-manager",
"version": "0.20.0",
"scripts": {
"eslint": "eslint \"app/src/**/*.?(ts|tsx)\" --fix",
"licenses-landing": "cd landing && npm run licenses",
"licenses-app": "cd app && npm run licenses",
"licenses": "npm run licenses-landing && npm run licenses-app",
"build-landing": "cd landing && npm run build",
"build-app": "cd app && npm run build",
"testdist": "cd anita-app.github.io && http-server",
"buildTest": "npm run build-app && npm run testdist",
"pull-main": "cd anita-app.github.io && git pull --force origin main",
"add-all": "cd anita-app.github.io && git add --all",
"propagate-version": "node version-propagator.js",
"commit-with-message": "cd anita-app.github.io && git commit -m \"New version\"",
"push-to-origin": "cd anita-app.github.io && git push -u origin main",
"publish-to-github-pages": "npm run add-all && npm run commit-with-message && npm run push-to-origin",
"deploy": "npm run pull-main && npm run licenses && cglg --action=newRelease && npm run do-no-run-this-deploy-directly && cglg --action=closeRelease && npm run publish-to-github-pages",
"do-no-run-this-deploy-directly": "npm run propagate-version && npm run build-landing && npm run build-app"
},
"dependencies": {
"fs-extra": "^10.0.0"
},
"author": "ilDon",
"license": "CC-BY-NC-4.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.23.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "^5.0.0"
}
}