This repository has been archived by the owner on Jun 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.94 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
60
61
62
63
64
65
66
67
{
"name": "cbrain-website",
"version": "1.0.0",
"description": "A website for CBRAIN",
"engines": {
"node": "10.3.0"
},
"private": "true",
"homepage": "https://github.com/aces/cbrain-website",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.prod.config.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"dev": "webpack-dev-server --config webpack.dev.config.js",
"start": "node server.js",
"heroku-postbuild": "webpack --config webpack.prod.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aces/cbrain-website.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aces/cbrain-website/issues"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.6",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.2",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"express": "^4.17.1",
"gh-pages": "^2.0.1",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss": "^8.2.10",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"terser-webpack-plugin": "^1.3.0",
"webpack": "^4.37.0",
"webpack-merge": "^4.2.1"
}
}