-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "@eightshift/eightshift-forms",
"version": "1.0.0",
"description": "This repository contains all the tools you need to start building a modern WordPress project.",
"authors": [
{
"name": "Eightshift team",
"email": "[email protected]",
"homepage": "https://eightshift.com/",
"role": "Developer / IT Manager"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/infinum/eightshift-forms.git"
},
"bugs": {
"url": "https://github.com/infinum/eightshift-forms/issues"
},
"homepage": "https://github.com/infinum/eightshift-forms#readme",
"scripts": {
"lintStyle": "stylelint **/*.scss",
"lintJs": "eslint src/",
"lint": "npm run lintJs && npm run lintStyle && composer test:standards",
"start": "webpack --progress --watch --mode development",
"build": "webpack --mode production",
"test": "wp boilerplate"
},
"devDependencies": {
"husky": "^9.1.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@eightshift/frontend-libs": "^12.1.5",
"autosize": "^6.0.1",
"choices.js": "^10.2.0",
"dropzone": "^6.0.0-beta.2",
"flatpickr": "^4.6.13",
"reactflow": "^11.11.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}