-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.74 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
61
62
63
64
{
"name": "mmx-programmer-backend",
"version": "0.1.0",
"main": "dist/firebase.js",
"license": "MIT",
"scripts": {
"test": "jest --verbose src",
"lint": "eslint src",
"setup": "yarn firebase use --add",
"build": "babel 'src' --out-dir 'dist' --source-maps",
"watch": "yarn build --watch",
"serve": "yarn watch & yarn firebase serve --only functions",
"predeploy": "yarn build",
"deploy": "yarn firebase deploy --only functions",
"debug": "yarn watch & nodemon --inspect=7070 node_modules/@google-cloud/functions-framework --target upload"
},
"engines": {
"node": "10"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"eslint --fix src",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-flow": "^7.0.0",
"@google-cloud/functions-framework": "^1.1.1",
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"firebase-tools": "^7.1.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2"
},
"dependencies": {
"@tonejs/midi": "^2.0.6",
"busboy": "^0.3.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"firebase-admin": "^8.2.0",
"firebase-functions": "^3.1.0",
"lodash.clonedeep": "^4.5.0"
}
}