-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.12 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
{
"private": true,
"name": "@avada/app",
"description": "An AVADA application for Shopify written in Nodejs",
"author": "baorv <roanvanbao@gmail.com>",
"workspaces": [
"packages/*"
],
"scripts": {
"deploy": "firebase deploy",
"serve": "firebase serve",
"shell": "firebase functions:shell",
"start": "avada app:serve",
"logs": "firebase functions:log",
"emulators": "firebase emulators:start",
"predeploy": "yarn workspace @avada/assets run production && yarn workspace @avada/functions run production",
"eslint-fix": "npm --prefix packages/assets/ run eslint-fix && npm --prefix packages/functions/ run eslint-fix",
"start-dev": "concurrently \"yarn workspace @avada/assets run watch\" \"yarn workspace @avada/functions run watch\" \"yarn start\""
},
"devDependencies": {
"babel-jest": "^24.9.0",
"eslint": "^6.3.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.16.0",
"jest": "^24.9.0",
"prettier": "^1.18.2"
},
"dependencies": {
"concurrently": "^5.0.1"
}
}