This repository has been archived by the owner on May 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "gifbooth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run server/server.js\" \"npm run client\"",
"start": "concurrently \"node server/server.js\" \"npm run client\"",
"server": "nodemon server/server.js",
"client": "node start-client.js",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build",
"lint": "./node_modules/.bin/eslint --fix \"{client/src,server}/**/*.{js,jsx}\"",
"format": "npx prettier --write \"{client/src,server}*/**/*.{js,jsx,css}\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.729.0",
"axios": "^0.20.0",
"concurrently": "^5.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"fluent-ffmpeg": "^2.1.2",
"multer": "^1.4.2",
"sharp": "^0.26.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"nodemon": "^2.0.4",
"prettier": "^2.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
]
}
}