-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.88 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
{
"name": "recipes",
"version": "2.0.0",
"license": "MIT",
"author": "Guillaume Paris <[email protected]>",
"scripts": {
"dev": "webpack-dev-server --config utils/webpack/dev.config.js",
"build": "webpack --config utils/webpack/prod.config.js",
"serve-build": "node utils/server/server.js",
"serve-build-external": "node utils/server/server.js --host 0.0.0.0",
"lint": "eslint .",
"test": "echo No test specified && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guillaumejparis/recipes.git"
},
"homepage": "https://guillaumejparis.github.io/recipes",
"dependencies": {
"@yarnpkg/pnpify": "^2.0.0-rc.23",
"fuse.js": "^6.0.4",
"preact": "^10.4.4",
"preact-markdown": "^2.0.0",
"toastify-js": "^1.8.0",
"wouter-preact": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-react-jsx": "^7.10.1",
"@babel/preset-react": "^7.10.1",
"@epegzz/sass-vars-loader": "^6.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-react-css-modules": "^5.2.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.2",
"css-loader": "^3.5.3",
"eslint": "^7.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.20.0",
"express": "^4.17.1",
"extract-loader": "^5.1.0",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"postcss-loader": "^3.0.0",
"postcss-scss": "^2.1.1",
"resolve": "^1.17.0",
"sass": "^1.26.8",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"webpack": "next",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"workbox-webpack-plugin": "^5.1.3"
}
}