-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.83 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
65
66
67
68
69
70
71
{
"name": "react-next-landing",
"description": "Modern Multipurpose Landing Pages Template Using React, Next, Styled Components and so on. It also support Gatsby Static site generator ",
"version": "2.0.0",
"private": true,
"author": "RedQ Team",
"license": "",
"repository": {
"type": "git",
"url": "https://github.com/telic-solutions/website.git"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"cpx": "^1.5.0",
"cross-env": "^5.2.0",
"firebase-tools": "^7.3.2",
"husky": "^3.0.5",
"lerna": "^3.13.4",
"lint-staged": "^9.2.5",
"prettier": "^1.17.0",
"rimraf": "^3.0.0"
},
"workspaces": [
"packages/common",
"packages/landing",
"packages/landing-gatsby",
"packages/reusecore"
],
"scripts": {
"clean": "lerna clean --yes && rimraf node_modules",
"gatsby-dev": "yarn workspace gatsby-landing run dev",
"gatsby-build": "yarn workspace gatsby-landing run build",
"gatsby-serve": "yarn workspace gatsby-landing run serve",
"start": "lerna run --parallel dev",
"web": "yarn workspace next-landing run dev",
"landing-build": "rimraf dist && yarn workspace next-landing run build",
"landing-start": "yarn workspace next-landing run start",
"prebuild-public": "rimraf \"dist/functions/**\" && rimraf \"dist/public\"",
"prefirebase-serve": "yarn run build-public && yarn run build-funcs && yarn workspace next-landing run build && yarn run copy-deps && yarn run install-deps",
"firebase-serve": "cross-env NODE_ENV=production firebase serve",
"prefirebase-deploy": "yarn run build-public && yarn run build-funcs && yarn workspace next-landing run build && yarn run copy-deps",
"firebase-deploy": "firebase deploy",
"build-public": "cpx \"packages/common/src/assets/**/*.*\" \"dist/public/static\" -C && cpx \"public/**/*.*\" \"dist/public\" -C",
"build-funcs": "babel \"packages/functions\" --out-dir \"dist/functions\"",
"copy-deps": "cpx \"packages/landing/*{package.json,package-lock.json,yarn.lock}\" \"dist/functions\" -C",
"install-deps": "cd \"dist/functions\" && yarn",
"pregatsby-firebase-serve": "rimraf dist && yarn run gatsby-build && cpx \"packages/landing-gatsby/public/**/*.*\" \"dist/public\" -C",
"gatsby-firebase-serve": "cross-env NODE_ENV=production firebase serve",
"pregatsby-firebase-deploy": "rimraf dist && yarn run gatsby-build && cpx \"packages/landing-gatsby/public/**/*.*\" \"dist/public\" -C",
"gatsby-firebase-deploy": "firebase deploy",
"netlify-deploy": "ÿarn workspace next-landing run netlify-build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md,css}": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"react-grid-gallery": "^0.5.5",
"react-images": "^1.0.0",
"react-markdown": "^4.2.2",
"react-photo-gallery": "^8.0.0"
}
}