2019-10-02 12:16:07 +08:00
{
"name" : "m-labs-zola" ,
2023-12-01 11:52:37 +08:00
"sideEffects" : false ,
2019-10-02 12:16:07 +08:00
"version" : "1.0.0" ,
"description" : "These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. For deployment, see the nix-scripts repository. Commits to https://git.m-labs.hk/M-Labs/web2019.git are automatically deployed to m-labs.hk through Hydra." ,
"scripts" : {
"test" : "echo \"Error: no test specified\" && exit 1" ,
2023-07-12 13:16:44 +08:00
"start" : "npx webpack --watch" ,
"build" : "npx webpack"
2019-10-02 12:16:07 +08:00
} ,
"repository" : {
"type" : "git" ,
"url" : "https://git.m-labs.hk/M-Labs/web2019.git"
} ,
"devDependencies" : {
2024-02-02 17:24:01 +08:00
"@babel/cli" : "^7.23.9" ,
2024-03-19 11:10:53 +08:00
"@babel/core" : "^7.24.0" ,
"@babel/preset-env" : "^7.24.0" ,
2024-02-02 17:24:01 +08:00
"@babel/preset-react" : "^7.23.3" ,
2024-03-21 10:08:50 +08:00
"@babel/plugin-proposal-decorators" : "^7.24.1" ,
"@babel/plugin-proposal-class-properties" : "^7.18.6" ,
"@babel/plugin-transform-object-rest-spread" : "" ,
"@babel/plugin-transform-runtime" : "^7.24.1" ,
"@babel/plugin-transform-modules-commonjs" : "^7.24.1" ,
"@hello-pangea/dnd" : "^16.5.0" ,
"@uidotdev/usehooks" : "^2.4.1" ,
2023-06-28 11:41:06 +08:00
"babel-loader" : "^9.1.3" ,
2023-11-28 15:32:34 +08:00
"babel-preset-minify" : "^0.5.2" ,
2024-03-19 11:10:53 +08:00
"bootstrap" : "^5.3.3" ,
2024-02-02 17:24:01 +08:00
"jquery" : "^3.7.1" ,
2024-03-21 10:08:50 +08:00
"json-logic-js" : "^2.0.2" ,
2023-06-28 11:41:06 +08:00
"react" : "^18.2.0" ,
2024-03-19 11:10:53 +08:00
"react-bootstrap" : "^2.10.2" ,
2023-11-28 15:32:34 +08:00
"react-dom" : "^18.2.0" ,
"uuid" : "^9.0.1" ,
2024-03-19 11:10:53 +08:00
"webpack" : "^5.90.3" ,
2023-11-28 15:32:34 +08:00
"webpack-cli" : "^5.1.4" ,
2024-03-21 10:08:50 +08:00
"webpack-preprocessor-loader" : "^1.3.0" ,
"zustand" : "^4.5.2"
2019-10-02 12:16:07 +08:00
} ,
"babel" : {
"presets" : [
2024-03-21 10:08:50 +08:00
[
"@babel/preset-env" ,
{
"useBuiltIns" : "usage" ,
"corejs" : "3" ,
"targets" : {
"browsers" : [ "last 5 versions" , "ie >= 9" ]
}
}
] ,
2020-01-19 22:15:51 +08:00
"@babel/preset-react"
2024-03-21 10:08:50 +08:00
] ,
"plugins" : [
[ "@babel/plugin-proposal-decorators" , { "legacy" : true } ] ,
[ "@babel/plugin-proposal-class-properties" , { "loose" : true } ] ,
[ "@babel/plugin-transform-object-rest-spread" ] ,
[ "@babel/plugin-transform-for-of" ] ,
[ "@babel/plugin-transform-runtime" ] ,
[
"@babel/plugin-transform-modules-commonjs" ,
{
"allowTopLevelThis" : true
}
]
2019-10-02 12:16:07 +08:00
]
2024-03-21 10:08:50 +08:00
} ,
"dependencies" : {
"core-js" : "^3.36.1"
2019-10-02 12:16:07 +08:00
}
}