-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.2 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
{
"name": "ubacm.org",
"version": "1.0.0",
"main": "index.js",
"author": "Angus Lam <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn build-site && yarn build-webpack",
"start-site": "node metalsmith/index.js",
"start-webpack": "webpack --config webpack.config.js --mode development --watch",
"build-site": "node metalsmith/build.js",
"build-webpack": "webpack --config webpack.config.js --mode production",
"start": "npm-run-all --parallel start-webpack start-site"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.7.2",
"handlebars": "^4.7.7",
"materialize-css": "^1.0.0-rc.2",
"metalsmith": "^2.3.0",
"metalsmith-browser-sync": "^1.1.1",
"metalsmith-layouts": "^1.8.1",
"metalsmith-markdown": "^0.2.1",
"metalsmith-permalinks": "^0.5.0",
"metalsmith-sass": "^1.5.0",
"node-sass": "^8.0.0",
"prop-types": "^15.6.0",
"react": "^16.8.3",
"react-dom": "^16.8.3"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"npm-run-all": "^4.1.3",
"webpack": "^4.1.1",
"webpack-cli": "^3.2.3"
}
}