-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
103 lines (103 loc) · 3.22 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
{
"name": "docs",
"description": "Enact JavaScript Framework Docs",
"version": "4.9.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"@enact/core": "^4.9.0",
"@enact/docs-utils": "^0.4.10",
"@enact/ui": "^4.9.0",
"@primer/octicons": "^19.11.0",
"babel-plugin-dev-expression": "^0.2.3",
"chokidar": "^3.6.0",
"chroma-js": "^2.4.2",
"classnames": "^2.5.1",
"color-pairs-picker": "^1.3.6",
"create-react-class": "^15.7.0",
"css-loader": "^6.11.0",
"elasticlunr": "^0.9.5",
"gatsby": "^5.13.7",
"gatsby-plugin-catch-links": "^5.13.1",
"gatsby-plugin-google-gtag": "^5.13.1",
"gatsby-plugin-image": "^3.13.1",
"gatsby-plugin-less": "^7.13.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-offline": "^6.13.2",
"gatsby-plugin-postcss": "^6.13.1",
"gatsby-plugin-react-helmet": "^6.13.1",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-plugin-typography": "^5.13.1",
"gatsby-remark-autolink-headers": "^6.13.1",
"gatsby-remark-copy-linked-files": "^6.13.1",
"gatsby-remark-embed-youtube": "^0.0.7",
"gatsby-remark-images": "^7.13.1",
"gatsby-remark-prismjs": "^7.13.1",
"gatsby-remark-responsive-iframe": "^6.13.1",
"gatsby-remark-smartypants": "^6.13.1",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-javascript-frontmatter": "^5.13.1",
"gatsby-transformer-json": "^5.13.1",
"gatsby-transformer-remark": "^6.13.1",
"global-modules": "^2.0.0",
"gray-matter": "^4.0.3",
"json-loader": "^0.5.7",
"jsonata": "^2.0.5",
"jsonfile": "^6.1.0",
"less": "^4.2.0",
"less-loader": "^11.1.4",
"lodash": "^4.17.21",
"markdown-it": "^13.0.2",
"markdown-it-jsx": "^1.1.0",
"markdown-toc": "^1.2.0",
"minimist": "^1.2.8",
"postcss": "^8.4.39",
"postcss-loader": "^7.3.4",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"ramda": "^0.30.1",
"react": "^18.3.1",
"react-document-title": "^2.0.3",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-responsive-grid": "^0.3.4",
"react-typography": "^0.16.23",
"readdirp": "^3.6.0",
"shelljs": "^0.8.5",
"typography": "^0.16.24",
"typography-plugin-code": "^0.16.20"
},
"overrides": {
"autolinker": "^4.0.0",
"webpack-dev-middleware": "^5.3.4"
},
"devDependencies": {
"eslint-config-enact-proxy": "^1.0.8"
},
"eslintConfig": {
"extends": "enact-proxy/strict"
},
"keywords": [
"enact",
"enactjs",
"docs"
],
"license": "Apache-2.0",
"repository": "github:enactjs/docs",
"main": "n/a",
"scripts": {
"serve": "npm run make-runner -- --fast && gatsby develop",
"test": "echo \"Error: no test specified\" && exit 0",
"develop": "gatsby develop",
"dev-m": "gatsby develop -H 0.0.0.0 -p 8000",
"build": "npm run make-runner && gatsby build",
"fast-build": "npm run make-runner -- --fast && gatsby build",
"deploy": "npm run make-runner && gatsby build --prefix-paths",
"fast-deploy": "npm run make-runner -- --fast && gatsby build --prefix-paths",
"parse": "node scripts/DocParser.js",
"clean": "node scripts/clean.js",
"make-runner": "node scripts/make-runner.js",
"lint": "enact lint --strict"
}
}