forked from darklang/dark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 2.32 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
{
"name": "client",
"version": "0.1.0",
"repository": "[email protected]:darklang/dark.git",
"private": true,
"author": "",
"devDependencies": {
"browserify": "16.5.1",
"browserify-incremental": "3.1.1",
"bs-platform": "7.0.1",
"dom-storage": "2.1.0",
"jsdom": "16.2.2",
"jsdom-global": "3.0.2",
"node-sass": "4.14.1",
"npm-run-all": "4.1.5",
"ppx-deriving": "44.1.3",
"prettier": "2.0.5",
"testcafe": "1.8.6"
},
"dependencies": {
"@fullstory/browser": "^1.4.4",
"@glennsl/bs-json": "5.0.2",
"acorn": ">=7.3.1",
"analytics-node": "^3.4.0-beta.2",
"bs-deriving": "44.1.3",
"bs-fetch": "0.6.1",
"bs-uuid": "0.3.1",
"bs-webapi": "0.16.1",
"bucklescript-tea": "darklang/bucklescript-tea#master",
"clipboard-copy": "3.1.0",
"domready": "1.0.8",
"html2canvas": "1.0.0-rc.5",
"minimist": ">=1.2.3",
"moment": "^2.27.0",
"mouse-wheel": "1.2.0",
"pusher-js": "5.1.1",
"rollbar": "2.17.0",
"sha2": "1.0.2",
"tablecloth-bucklescript": "0.0.7",
"validator": "^13.1.1"
},
"scripts": {
"clean": "./scripts/bsb-wrapper.sh -clean-world",
"build:bsb": "./scripts/bsb-wrapper.sh -make-world",
"build:app": "browserifyinc --cachefile lib/browserify-app-cache.json lib/js/client/src/app/Main.bs.js --standalone app -o backend/static/app.js",
"build:appsupport": "browserifyinc --cachefile lib/browserify-cache.json client/src/appsupport.js --standalone appsupport -o backend/static/appsupport.js",
"build:unsupportedBrowser": "browserifyinc --cachefile lib/browserify-cache.json client/src/unsupportedBrowser.js --standalone unsupportedBrowser -o backend/static/unsupportedBrowser.js",
"build:fetcher": "browserifyinc --cachefile lib/browserify-fetcher-cache.json lib/js/client/workers/Fetcher.bs.js --standalone fetcher -o backend/static/fetcher.js",
"build:analysiswrapper": "browserifyinc --cachefile lib/browserify-analysis-wrapper-cache.json lib/js/client/workers/AnalysisWrapper.bs.js --standalone analysiswrapper -o backend/static/analysiswrapper.js",
"copy:static": "rsync -a client/static/* backend/static/",
"build": "npm-run-all --sequential build:bsb --parallel build:app build:appsupport build:unsupportedBrowser build:fetcher build:analysiswrapper copy:static",
"test": "scripts/runtests --dom"
}
}