-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "@coronasafe/prescription-builder",
"version": "0.3.0",
"description": "Tailwind styled Reason React prescription builder component",
"keywords": [
"Reason",
"React",
"Search",
"Tailwind",
"UI",
"CoronaSafe"
],
"contributors": [
"Bodhish Thomas <[email protected]>",
"Gigin Chandy George <[email protected]>"
],
"homepage": "https://github.com/coronasafe/prescription-builder",
"license": "MIT",
"main": "src/components/Prescription__Builder.res",
"repository": {
"type": "git",
"url": "https://github.com/coronasafe/prescription-builder"
},
"devDependencies": {
"autoprefixer": "^10.2.6",
"bs-platform": "9.0.2",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^4.5.1",
"gentype": "^4.1.0",
"parcel": "^2.0.0-beta.2",
"postcss": "^8.3.0",
"postcss-cli": "^8.3.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.0",
"postcss-loader": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"style-loader": "^2.0.0",
"tailwindcss": "^2.1.4",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@glennsl/bs-json": "^5.0.3",
"@rescript/react": "^0.10.3",
"bs-webapi": "^0.16.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w -ws _ ",
"clean": "bsb -clean-world",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack -w",
"webpack:production": "NODE_ENV=production webpack",
"server": "webpack serve",
"re:build": "bsb -make-world -clean-world",
"re:watch": "bsb -make-world -clean-world -w"
}
}