-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.31 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.31 KB
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
{
"name": "fundamenty",
"description": "Eleventy starter project with multi-language support",
"homepage": "https://github.com/creasoft-dev/fundamenty",
"keywords": [
"eleventy",
"website",
"ssg"
],
"version": "0.1.1",
"author": "Young-Suk Ahn Park<ys.ahnpark@gmail.com>",
"license": "MIT",
"repository": "git@github.com:creasoft-dev/fundamenty.git",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.2",
"@appbaseio/reactivesearch": "^3.22.0",
"@elastic/elasticsearch": "^7.13.0",
"alex": "^9.1.0",
"algoliasearch": "^4.10.3",
"autocomplete.js": "^0.38.0",
"autoprefixer": "^10.3.1",
"buffer": "^6.0.3",
"chalk": "^4.1.1",
"css-loader": "^6.2.0",
"jest": "^27.0.6",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"luxon": "^2.0.1",
"mini-css-extract-plugin": "^2.1.0",
"npm-run-all": "^4.1.5",
"postcss-loader": "^6.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"tailwindcss": "^2.2.7",
"vue": "^2.6.14",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0"
},
"scripts": {
"test": "NODE_ENV=test jest",
"clean": "rimraf _site",
"serve:webpack": "webpack --mode development --watch",
"serve:eleventy": "eleventy --serve --watch",
"serve": "npm-run-all clean --parallel serve:* --print-label",
"build:webpack": "webpack --mode production",
"build:eleventy": "eleventy",
"build": "run-s clean build:*",
"algolia:tool": "node ./tools/algolia-tool.js",
"es:tool": "node ./tools/es-tool.js",
"alex": "alex ./src/en",
"fun-cli": "node ./tools/fundamenty-cli.js",
"fun-test": "node ./tools/fundamenty-cli.js post/item \"Hello my world\" -l en",
"fundamenty:tool": "node ./tools/fundamenty-tool.js"
},
"dependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"dotenv": "^10.0.0",
"swagger-ui-react": "^3.52.0"
}
}