-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 1.21 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
{
"name": "superprops",
"description": "Modern Multipurpose Landing Pages Template Using React, Next, Styled Components and so on. It also support Gatsby Static site generator ",
"version": "8.0.1",
"private": true,
"author": "RedQ, Inc",
"devDependencies": {
"cross-env": "^7.0.2",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2"
},
"workspaces": [
"packages/landing",
"packages/landing-gatsby"
],
"scripts": {
"clean": "yarn workspaces run rimraf \"{.next,node_modules,.cache,out,dist}\" && rimraf node_modules",
"next-dev": "yarn workspace @superprops/next run dev",
"next-build": "yarn workspace @superprops/next run build",
"next-start": "yarn workspace @superprops/next run start",
"next-export": "yarn workspace @superprops/next run export",
"gatsby-dev": "yarn workspace @superprops/gatsby run dev",
"gatsby-build": "yarn workspace @superprops/gatsby run build",
"gatsby-serve": "yarn workspace @superprops/gatsby run start"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md,css}": [
"prettier --trailing-comma es5 --single-quote --write"
]
}
}