-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
42 lines (42 loc) · 1.36 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
{
"devDependencies": {
"@symfony/webpack-encore": "^0.31.0",
"FOSJsRoutingBundle": "FriendsOfSymfony/FOSJsRoutingBundle#2.5.4",
"babel-eslint": "^10.1.0",
"bootstrap": "^4.4.1",
"bootstrap-select": "^1.13.12",
"browser-update": "^3.3.16",
"core-js": "^3.0.0",
"daterangepicker": "^3.0.5",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"font-awesome": "^4.7.0",
"jquery": "^3.5.1",
"moment": "2.29.1",
"node-sass": "^5.0.0",
"popper.js": "^1.16.1",
"prettier": "^2.0.2",
"regenerator-runtime": "^0.13.2",
"sass-loader": "^10.0.5",
"stylelint": "^13.2.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.16.0",
"webpack-notifier": "^1.6.0"
},
"resolutions": {
"moment": "2.24.0"
},
"license": "GPL-3.0",
"private": false,
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production --progress",
"lint": "npx eslint 'assets/js/**/*.js' --cache --max-warnings=0",
"lint:fix": "npx eslint 'assets/js/**/*.js' --cache --max-warnings=0 --fix",
"lint:css": "npx stylelint 'assets/css/**/*.{css,scss}' --cache --max-warnings=0",
"lint:css:fix": "npx stylelint 'assets/css/**/*.{css,scss}' --cache --max-warnings=0 --fix"
}
}