-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.86 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
{
"name": "website",
"version": "0.0.0",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@mep-agency/web-toolkit-front-end": "mep-agency/web-toolkit-front-end",
"tailwindcss": "^3.0.5"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"@symfony/webpack-encore": "^1.7.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"autoprefixer": "^10.4.0",
"core-js": "^3.0.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.0.0",
"eslint-plugin-import": "^2.24.2",
"file-loader": "^6.0.0",
"postcss-loader": "^6.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.2",
"sass": "^1.42.1",
"sass-loader": "^12.0.0",
"stylelint": "^14.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"ts-loader": "^9.0.0",
"typescript": "^4.4.3",
"webpack-notifier": "^1.6.0"
},
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production --progress",
"eslint": "eslint \"assets/**/*.ts\" --cache",
"eslint-fix": "eslint \"assets/**/*.ts\" --fix --cache",
"stylelint": "stylelint \"assets/**/*.scss\" --cache",
"stylelint-fix": "stylelint \"assets/**/*.scss\" --fix --cache",
"twiglint": "php bin/console cache:clear && php bin/console lint:twig templates",
"lint": "yarn run eslint && yarn run stylelint && yarn run twiglint",
"cs-fix": "yarn run eslint-fix && yarn run stylelint-fix"
}
}