forked from breatheco-de/content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 897 Bytes
/
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
{
"name": "gatsby-starter-default",
"engines": {
"node": "14.x"
},
"description": "BreatheCode's Content Platform",
"version": "0.0.1",
"author": "Alejandro Sanchez <[email protected]>",
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "npm run test && gatsby build --no-uglify",
"develop": "gatsby develop -p $PORT",
"start": "gatsby develop -p 3000",
"now-build": "npm run build && node generate-json.js",
"format": "prettier --write 'src/**/*.js'",
"test": "node src/test/test-lessons.js"
},
"devDependencies": {
"axios": "^0.21.1",
"colors": "^1.4.0",
"front-matter": "^3.2.1",
"mime-types": "^2.1.27",
"precommit": "^1.2.2",
"prettier": "^1.19.1"
},
"precommit": [
"npm test"
],
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
}
}