-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (75 loc) · 1.62 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@m5nv/kiscss",
"version": "0.5.01",
"description": "kis❤️css - keep it simple css",
"author": "Million Views, LLC",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git@github.com:million-views/kis.css.git"
},
"eslintIgnore": [
"src/app/main.js"
],
"css": "dist/kis.css",
"browserslist": "firefox >= 118, last 2 Chrome versions, safari >= 17",
"targets": {
"test": {
"source": [
"src/web/index.html",
"src/web/kitchen-sink.html"
]
},
"main": {
"source": "src/app/main.js"
},
"css": {
"source": "src/lib/kiscss/kis.css"
}
},
"scripts": {
"lint": "eslint src --cache",
"lint:fix": "eslint --fix src",
"build:test": "parcel build --target test",
"build:css": "parcel build --target css",
"dev": "parcel serve"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix src",
"git add"
],
"*.scss": [
"stylelint --fix",
"git add"
]
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@parcel/transformer-css": "2.10.2",
"@parcel/transformer-sass": "^2.10.1",
"eslint": "^8.52.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "13.0.0",
"husky": "^8.0.3",
"parcel": "^2.10.1",
"process": "^0.11.10",
"stylelint": "15.11.0"
},
"@parcel/transformer-css": {
"drafts": {
"nesting": true,
"customMedia": true
}
}
}