generated from eea/volto-frontend-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.39 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.39 KB
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
{
"name": "eionet2-azure-functions",
"version": "1.0.1",
"description": "",
"main": "src/functions/*.js",
"scripts": {
"start": "func start",
"stylelint": "npx stylelint --allow-empty-input 'src/**/*.{css,less}'",
"stylelint:fix": "npm run stylelint -- --fix",
"prettier": "prettier --single-quote --check 'src/**/*.{js,jsx,json,css,less,md}'",
"prettier:fix": "prettier --single-quote --write 'src/**/*.{js,jsx,json,css,less,md}'",
"lint": "node_modules/eslint/bin/eslint.js --max-warnings=0 'src/**/*.{js,jsx}'",
"lint:fix": "node_modules/eslint/bin/eslint.js --fix 'src/**/*.{js,jsx}'",
"test": "jest --coverage",
"test:watch": "jest --watch",
"pc": "npm run stylelint:fix & npm run prettier:fix & npm run lint:fix & npm run test"
},
"dependencies": {
"@azure/functions": "^4.0.0",
"@azure/identity": "^4.0.0",
"axios": "^1.6.0",
"date-and-time": "^4.1.0"
},
"devDependencies": {
"azure-functions-core-tools": "^4.x",
"jest": "^30.1.3",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.4",
"jest-junit": "^16.0.0",
"prettier": "^3.6.2",
"stylelint": "^16.25.0",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-prettier": "^5.0.3"
}
}