Co-authored-by: Jimmy Vargo <jimmyvargo@Jimmys-MacBook-Air.local> Co-authored-by: Jimmy Vargo <james@ayo.tokyo> Reviewed-on: ayo/website#1
40 lines
975 B
JSON
40 lines
975 B
JSON
{
|
|
"name": "ayo",
|
|
"version": "0.1.0",
|
|
"main": "index.js",
|
|
"author": "Risselin Corentin",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@babel/cli": "7.22.10",
|
|
"@babel/core": "7.22.11",
|
|
"@babel/preset-env": "7.22.10",
|
|
"babel-loader": "9.1.3",
|
|
"babel-plugin-inferno": "6.6.1",
|
|
"compression-webpack-plugin": "10.0.0",
|
|
"inferno": "8.2.2",
|
|
"inferno-redux": "8.2.2",
|
|
"inferno-router": "8.2.2",
|
|
"redux": "4.2.1",
|
|
"webpack": "5.88.2",
|
|
"webpack-cli": "5.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"copy-webpack-plugin": "11.0.0",
|
|
"css-loader": "6.8.1",
|
|
"marked": "7.0.5",
|
|
"sass": "1.66.1",
|
|
"sass-loader": "13.3.2",
|
|
"style-loader": "3.3.3",
|
|
"webpack-dev-server": "4.15.1"
|
|
},
|
|
"engines": {
|
|
"node": "16.20.0"
|
|
},
|
|
"scripts": {
|
|
"build": "webpack --config webpack.prod.js",
|
|
"dev": "webpack --config webpack.dev.js",
|
|
"server": "webpack --config webpack.server.js",
|
|
"start": "node server.js",
|
|
"start-dev": "webpack-dev-server --config webpack.dev.js"
|
|
}
|
|
}
|