-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "relicta",
"version": "1.0.0",
"description": "WordPress project for the Relicta website.",
"author": {
"name": "Carmine Colicino",
"email": "[email protected]",
"url": "https://github.com/colis",
"role": "developer"
},
"license": "MIT",
"scripts": {
"start": "composer install --ignore-platform-reqs && npm install --legacy-peer-deps && npm run build",
"build": "wp-scripts build",
"watch": "wp-scripts start",
"test": "composer run test",
"build-release": "npm install --legacy-peer-deps && composer install --no-dev -o && npm run build",
"lint:js": "wp-scripts lint-js",
"lint:css": "wp-scripts lint-style",
"lint:php": "composer run lint",
"lint-fix:php": "composer run lint-fix",
"prepare": "husky"
},
"lint-staged": {
"*.scss": [
"npm run lint:css"
],
"*.js": [
"npm run lint:js"
],
"*.php": [
"npm run lint:php"
]
},
"repository": {
"type": "git",
"url": "https://github.com/colis/relicta"
},
"devDependencies": {
"@wordpress/scripts": "^30.6",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"node-sass": "^9.0.0",
"sass-loader": "^16.0.3"
},
"engines": {
"node": ">=14.0.0"
}
}