-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "react-svg-strumming",
"version": "1.4.0",
"author": "Rubén Martín Lozano <[email protected]>",
"files": ["dist"],
"license": "ISC",
"main": "dist/index.js",
"targets": {
"main": {
"source": "src/index.jsx"
},
"css": {
"source": "src/index.scss"
}
},
"type": "module",
"scripts": {
"build": "parcel build --no-source-maps --no-optimize",
"clean": "rimraf dist",
"dev": "code . && parcel demo/index.html --open --port=1226",
"fenix": "rimraf package-lock.json && rimraf node_modules && npm i -s --prefer-online --no-fund --no-audit",
"lint": "stylelint '**/*.scss' --fix && standard --fix",
"prebuild": "npm run clean",
"precommit": "npm run lint",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"dependencies": {
"classnames": "2.3.2"
},
"devDependencies": {
"@parcel/transformer-sass": "2.9.3",
"husky": "8.0.0",
"parcel": "2.9.3",
"process": "0.11.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"standard": "17.1.0",
"stylelint-config-sass-guidelines": "10.0.0",
"stylelint": "15.9.0"
},
"peerDependencies": {
"react": "0.14 || 15 || 16 || 17 || 18"
}
}