-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
47 lines (47 loc) · 2.17 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
{
"name": "gifygram",
"version": "1.0.0",
"description": "A stupid website for animating images on top of videos.",
"scripts": {
"installTsSchemaLoader": "cd ts-schema-loader && npm install",
"installDev": "cd dev && npm install",
"installTest": "cd test && npm install",
"installFrontend": "cd frontend && npm install",
"installFunctions": "cd functions && npm install",
"installAll": "npm install && npm run installTsSchemaLoader && npm run installDev && npm run installTest && npm run installFrontend && npm run installFunctions",
"auditFixTsSchemaLoader": "cd ts-schema-loader && npm audit fix --force",
"auditFixDev": "cd dev && npm audit fix --force",
"auditFixTest": "cd test && npm audit fix --force",
"auditFixFrontend": "cd frontend && npm audit fix --force",
"auditFixFunctions": "cd functions && npm audit fix --force",
"auditFixAll": "npm audit fix --force && npm run auditFixTsSchemaLoader && npm run auditFixDev && npm run auditFixTest && npm run auditFixFrontend && npm run auditFixFunctions",
"buildTsSchemaLoader": "cd ts-schema-loader && npm run build",
"buildFrontend": "cd frontend && npm run build",
"buildFunctions": "cd functions && npm run build",
"buildAll": "npm run installAll && npm run lint && npm run buildTsSchemaLoader && npm run buildFrontend && npm run buildFunctions",
"deploy": "npm run buildAll && firebase deploy",
"lint": "eslint --max-warnings 0 --ext .ts,.tsx .",
"start": "cd dev && NODE_ENV=development npm run build && NODE_ENV=development node dist/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrevorSundberg/gifygram.git"
},
"keywords": [],
"author": "Trevor Sundberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/TrevorSundberg/gifygram/issues"
},
"homepage": "https://github.com/TrevorSundberg/gifygram#readme",
"dependencies": {
"@types/json-schema": "^7.0.5",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"firebase-tools": "^8.7.0",
"typescript": "^3.8.3"
}
}