-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 loc) · 1.81 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
{
"name": "client",
"version": "0.1.0",
"repository": "[email protected]:darklang/dark.git",
"private": true,
"author": "",
"devDependencies": {
"@greenlabs/res-tailwindcss": "0.1.12",
"browserify": "17.0.0",
"browserify-incremental": "3.1.1",
"rescript": "9.1.4",
"dom-storage": "2.1.0",
"jsdom": "21.1.0",
"jsdom-global": "3.0.2",
"npm-run-all": "4.1.5",
"postcss": "8.4.21",
"postcss-cli": "10.1.0",
"sass": "1.58.0",
"tailwind-scrollbar": "2.1.0",
"tailwindcss": "3.2.4"
},
"dependencies": {
"@fullstory/browser": "1.6.2",
"@glennsl/bs-json": "5.0.3",
"acorn": "8.8.2",
"bs-fetch": "0.6.2",
"bs-uuid": "0.3.1",
"rescript-webapi": "0.7.0",
"rescript-tea": "0.16.0",
"clipboard-copy": "4.0.1",
"domready": "1.0.8",
"minimist": "1.2.7",
"moment": "2.29.4",
"mouse-wheel": "1.2.0",
"pusher-js": "8.0.1",
"rescript-js": "0.7.0",
"rescript-nodejs": "14.3.1",
"rollbar": "2.26.1",
"sha2": "1.0.2",
"tablecloth-rescript": "0.0.8-1",
"validator": "13.9.0"
},
"scripts": {
"clean": "./scripts/build/_rescript-wrapper.sh clean",
"build:rescript": "./scripts/build/_rescript-wrapper.sh build -with-deps",
"build:app": "browserifyinc --cachefile lib/browserify-app-cache.json lib/js/client/src/app/Main.bs.js client/src/appsupport.js backend/src/Wasm/static/BlazorWorker.js --standalone app -o backend/static/app.js",
"build:fetcher": "browserifyinc --cachefile lib/browserify-fetcher-cache.json lib/js/client/workers/Fetcher.bs.js --standalone fetcher -o backend/static/fetcher.js",
"copy:static": "rsync -a client/static/* backend/static/",
"build": "npm-run-all --sequential build:rescript --parallel build:app build:fetcher copy:static",
"test": "scripts/run-client-tests --dom"
}
}