forked from tecg-dcc/js-tp-fizz-buzz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.89 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
{
"name": "fizz-buzz",
"version": "1.0.0",
"description": "",
"main": "webpack.mix.js",
"repository": {
"type": "git",
"url": ""
},
"author": "Daniel Schreurs",
"license": "ISC",
"homepage": "https://github.com/hepl-dcc/FizzBuzz",
"devDependencies": {
"babel-eslint": "^9.0.0",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-config-wesbos": "0.0.19",
"eslint-loader": "^2.2.1",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-vue": "^5.2.3",
"laravel-mix": "^4.1.2",
"laravel-mix-eslint": "^0.1.3",
"prettier": "^1.18.2",
"resolve-url-loader": "3.1.0",
"sass": "^1.22.9",
"sass-loader": "7.*",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.0.0",
"webpack-dev-server": "^3.8.2"
},
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"cross-env": "^5.2.1"
},
"eslintConfig": {
"extends": [
"wesbos"
]
}
}