This repository has been archived by the owner on Mar 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.74 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
{
"private": true,
"config": {
"path": {
"src": "resources/takeoff",
"public": "public"
}
},
"scripts": {
"dev": "node_modules/webpack/bin/webpack.js --env.NODE_ENV=development --progress --hide-modules",
"watch": "npm run dev -- --watch",
"hot": "webpack-dev-server --env.NODE_ENV=development --inline --hot",
"prod": "node_modules/webpack/bin/webpack.js --env.NODE_ENV=production --no-progress --hide-modules",
"clean": "rm -rf public/css public/docs public/fonts public/img public/js public/**/*.js public/**/*.css",
"takeoff:install": "git clone --depth=1 --branch=master https://github.com/statikbe/takeoff.git $npm_package_config_path_src && rm -rf $npm_package_config_path_src/.git"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.1.0",
"dotenv": "^8.2.0",
"eslint": "4.19.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^4.7.1",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "7.*",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.3.0",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.5.22",
"webfonts-loader": "ariesjia/webfonts-loader",
"webpack": "^4.37.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"highlight.js": "9.12.0",
"jquery": "^3.3.1",
"parsleyjs": "^2.8.1"
}
}