-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
58 lines (58 loc) · 2.14 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
{
"name": "php-cs-fixer-configurator",
"version": "1.0.0",
"description": "Inspect PHP-CS-Fixer fixers and easily configure them",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mlocati/php-cs-fixer-configurator.git"
},
"keywords": [
"php",
"coding",
"style",
"php-cs-fixer",
"configuration",
"configurator"
],
"author": "Michele Locati <michele@locati.it>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mlocati/php-cs-fixer-configurator/issues"
},
"homepage": "https://github.com/mlocati/php-cs-fixer-configurator#readme",
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"@types/diff": "^4.0.2",
"@types/prismjs": "^1.16.0",
"axios": "^0.19.0",
"bootstrap": "^4.3.1",
"bootstrap-vue": "^2.0.0-rc.27",
"cross-env": "^5.2.0",
"diff": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"js-yaml": "^3.13.1",
"laravel-mix": "^4.1.4",
"php-parser": "^3.0.0-prerelease.8",
"posthtml": "^0.11.4",
"posthtml-include": "^1.2.0",
"posthtml-loader": "^1.0.1",
"prismjs": "^1.21.0",
"resolve-url-loader": "^2.3.1",
"sass": "^1.22.3",
"sass-loader": "^7.1.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development NODE_OPTIONS=--openssl-legacy-provider node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development NODE_OPTIONS=--openssl-legacy-provider 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_OPTIONS=--openssl-legacy-provider node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
}
}