-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 3.75 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@bodiless/gatsby-starter-bodiless",
"version": "0.0.66",
"description": "This is a Gatsby starter for a bodiless website",
"author": "e2thex <[email protected]>",
"homepage": "",
"license": "Apache-2.0",
"private": true,
"directories": {
"lib": "lib",
"test": "__tests__"
},
"dependencies": {
"@babel/core": "^7.12.13",
"@bodiless/accessibility": "^0.0.66",
"@bodiless/backend": "^0.0.66",
"@bodiless/components": "^0.0.66",
"@bodiless/components-ui": "^0.0.66",
"@bodiless/core": "^0.0.66",
"@bodiless/core-ui": "^0.0.66",
"@bodiless/documentation": "^0.0.66",
"@bodiless/fclasses": "^0.0.66",
"@bodiless/gatsby-theme-bodiless": "^0.0.66",
"@bodiless/layouts": "^0.0.66",
"@bodiless/layouts-ui": "^0.0.66",
"@bodiless/migration-tool": "^0.0.66",
"@bodiless/organisms": "^0.0.66",
"@bodiless/richtext": "^0.0.66",
"@bodiless/richtext-ui": "^0.0.66",
"@bodiless/search": "^0.0.66",
"@bodiless/ui": "^0.0.66",
"@matejmazur/react-katex": "^3.1.3",
"cross-env": "^5.2.0",
"docsify-cli": "^4.4.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"flesch-kincaid": "^1.0.5",
"gatsby": "^2.32.0",
"gatsby-plugin-canonical-urls": "^2.10.0",
"gatsby-plugin-google-gtag": "^2.8.0",
"gatsby-plugin-google-tagmanager": "^2.11.0",
"gatsby-plugin-sitemap": "^2.12.0",
"get-words": "^0.1.3",
"informed": "^3.29.0",
"katex": "^0.12.0",
"lodash": "^4.17.19",
"ora": "^4.0.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-h5-audio-player": "^3.6.0",
"react-helmet": "^5.2.0",
"rss-parser": "^3.11.0",
"sentence-extractor": "^1.0.7",
"syllable": "^4.1.0",
"tailwindcss": "^1.0"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/johnsonandjohnson/bodiless-js.git"
},
"scripts": {
"build": "npm-run-all build:env-vars build:lib build:doc build:search",
"build:lib": "gatsby build",
"build:doc": "bl-docs-build",
"build:env-vars": "generate-env-vars",
"check": "tsc -p ./tsconfig.check.json",
"clean": "rimraf ./public/* && rimraf ./.cache",
"dev-backend": "node ./node_modules/@bodiless/backend/src/server.js",
"dev-frontend": "gatsby develop",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx .",
"prestart": "run-s build:env-vars build:doc",
"build:search": "npm run search-index",
"start": "run-p -r dev-backend dev-frontend",
"serve": "gatsby serve",
"migrate": "cross-env DEBUG=migration_tool migration_tool",
"migrate:debug": "cross-env DEBUG=migration_tool:* migration_tool",
"migrate:postbuild": "cross-env DEBUG=migration_tool migration_tool postbuild public",
"migrate:full": "npm run migrate && npm run build && npm run migrate:postbuild && npm run serve",
"search-index": "create-search-index",
"publish": "npm-run-all build:env-vars build:lib build:search publish:push",
"publish:push": "gh-pages -d public -b prod"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.12.13",
"@types/syllable": "^4.1.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"gatsby-plugin-compile-es6-packages": "^1.1.0",
"gh-pages": "^3.1.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"typescript": "^3.9.7",
"uuid": "^8.3.2"
}
}