-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.34 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
{
"name": "@draftbit/rescript-font-awesome",
"version": "6.6.0",
"author": "",
"license": "MIT",
"scripts": {
"copy-git-hooks": "if [ -e ./hooks ] && [ -e ./.git/hooks ]; then cp -v ./hooks/* ./.git/hooks; fi",
"prepare": "if [ -z \"$CI\" ]; then yarn copy-git-hooks; fi",
"re:clean": "bsb -clean-world",
"re:build": "bsb -make-world",
"re:watch": "bsb -make-world -w",
"gen-icon-bindings": "node genbindings.js",
"gen": "yarn gen-icon-bindings",
"example:css:build": "tailwindcss -i ./example/index.css -o ./example/tailwind.css",
"example:css:watch": "yarn example:css:build --watch",
"example:parcel": "parcel example/index.html",
"example:start": "concurrently --names 'res,css,parcel' 'yarn re:watch' 'yarn example:css:watch' 'yarn example:parcel'"
},
"keywords": [
"BuckleScript",
"Rescript",
"FontAwesome",
"Font Awesome"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/pro-thin-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@fortawesome/sharp-solid-svg-icons": "^6.6.0"
},
"peerDependencies": {
"@rescript/react": "^0.10.1"
},
"optionalDependencies": {
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/pro-duotone-svg-icons": "^6.6.0",
"@fortawesome/pro-light-svg-icons": "^6.6.0",
"@fortawesome/pro-regular-svg-icons": "^6.6.0",
"@fortawesome/pro-solid-svg-icons": "^6.6.0"
},
"devDependencies": {
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/pro-duotone-svg-icons": "^6.6.0",
"@fortawesome/pro-light-svg-icons": "^6.6.0",
"@fortawesome/pro-regular-svg-icons": "^6.6.0",
"@fortawesome/pro-solid-svg-icons": "^6.6.0",
"@rescript/react": "^0.10.1",
"bs-platform": "^9.0.1",
"concurrently": "^7.5.0",
"lint-staged": "^10.4.0",
"parcel": "^2.7.0",
"prettier": "^2.1.2",
"process": "^0.11.10",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"tailwindcss": "^3.2.2"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.{md,scss,css,json}": [
"prettier --write"
],
"*.{re,rei}": [
"bsrefmt --in-place"
],
"*.res": [
"node ./scripts/format-rescript.js"
]
}
}