-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.39 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
{
"name": "blujay",
"version": "1.4.1",
"author": "Nathan Lenkowski <nathan@littlebiglab.com>",
"homepage": "https://blujay.littlebiglab.com",
"repository": {
"type": "git",
"url": "git://github.com/nlenkowski/blujay.git"
},
"bugs": {
"url": "https://github.com/nlenkowski/blujay/issues"
},
"license": "MIT",
"browserslist": [
">0.25%"
],
"scripts": {
"clean": "rimraf dist",
"dev": "npm run development",
"development": "npm run clean && cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "npm run clean && cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch"
},
"devDependencies": {
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"cross-env": "^7.0.2",
"eslint": "^7.1.0",
"laravel-mix": "^5.0.4",
"resolve-url-loader": "3.1.1",
"rimraf": "^3.0.2",
"sass": "^1.26.7",
"sass-loader": "8.*",
"stylelint": "^13.6.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.17.2",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"normalize.css": "^8.0.1"
}
}