-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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": "@modernpoacher/design-system",
"version": "1.1.22",
"description": "Modern Poacher Design System",
"keywords": [
"Modern",
"Poacher",
"Design",
"System"
],
"author": {
"name": "Jonathan Perry for Modern Poacher Limited",
"email": "[email protected]",
"url": "https://modernpoacher.com"
},
"license": "ISC",
"engines": {
"node": ">=18.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modernpoacher/design-system.git"
},
"scripts": {
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint src/sass",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix",
"lint:js": "eslint .",
"lint:js:fix": "npm run lint:js -- --fix",
"prettier": "prettier src/sass/*/**/*.scss --write"
},
"dependencies": {
"debug": "^4.4.0"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/eslint-parser": "^7.26.5",
"@babel/preset-env": "^7.26.7",
"core-js": "^3.40.0",
"cross-env": "^7.0.3",
"eslint": "8.57.1",
"eslint-config-standard": "^17.1.0",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"stylelint": "^16.14.1",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-scss": "^6.10.1"
}
}