-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.36 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.36 KB
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
{
"name": "bestcode",
"private": true,
"scripts": {
"start": "webpack-dev-server --config frontend/webpack.config.js --colors --progress",
"build:app": "yarn install && yarn run clean && yarn run build:production && yarn run asset_sync",
"build:production": "webpack --config frontend/webpack.config-pro.js --progress --color",
"build:development": "webpack --config frontend/webpack.config.js",
"clean": "node frontend/clean.js",
"asset_sync": "node frontend/asset_sync.js"
},
"dependencies": {
"activestorage": "^5.2.0",
"autolinker": "^1.7.1",
"bootstrap": "^4.1.1",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"firebase": "^5.4.1",
"font-awesome": "^4.7.0",
"fs-extra": "^7.0.0",
"github-markdown-css": "^2.10.0",
"jquery": "^3.3.1",
"jquery-ujs": "^1.2.2",
"moment": "^2.22.2",
"node-sass": "^4.9.0",
"popper.js": "^1.14.3",
"s3": "^4.4.0",
"sass-loader": "^7.0.1",
"select2": "^4.0.6-rc.1",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack-manifest-plugin": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"webpack": "^4.10.2",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4"
}
}