-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.51 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
75
76
77
78
79
{
"name": "wasmdb",
"version": "1.0.0",
"description": "",
"main": "bundle.js",
"dependencies": {
"@material-ui/core": "^4.6.0",
"@material-ui/icons": "^4.5.1",
"clsx": "^1.0.4",
"immutable": "^4.0.0-rc.12",
"printf": "^0.6.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-markdown": "^5.0.3",
"react-redux": "^7.1.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-virtualized": "^9.21.2",
"redux": "^4.0.4",
"redux-promise-middleware": "^6.1.2",
"redux-thunk": "^2.3.0",
"remark-gfm": "^1.0.0",
"uuid": "^8.3.2",
"webworkify": "^1.5.0"
},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.35",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.2",
"@types/react-router": "^5.0.3",
"@types/react-router-dom": "^5.0.1",
"@types/react-virtualized": "^9.21.5",
"@types/react-window": "^1.8.1",
"@types/uuid": "^8.3.0",
"brfs": "^2.0.2",
"browser-sync": "^2.26.7",
"browserify": "^17.0.0",
"chai": "^4.2.0",
"connect-history-api-fallback": "^1.6.0",
"envify": "^4.1.0",
"http-proxy-middleware": "^1.0.6",
"mocha": "^8.2.2",
"pegjs": "^0.10.0",
"redux-devtools-extension": "^2.13.8",
"terser": "^5.6.1",
"ts-node": "^9.1.1",
"ts-pegjs": "^0.3.1",
"tsify": "^5.0.2",
"typescript": "^4.2.3",
"watchify": "^4.0.0"
},
"optionalDependencies": {
"fsevents": "^2.0.0"
},
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"build": "npm run build:ts-prod",
"build:debug": "npm run build:parser && npm run build:ts",
"lint": "tslint --project .",
"watch": "watchify src/app.tsx -v -p tsify -t brfs -o dist/bundle.js --debug",
"build:ts": "browserify src/app.tsx -p tsify -t brfs > dist/bundle.js",
"build:ts-prod": "NODE_ENV=production browserify src/app.tsx -p tsify -t brfs -t [ envify --NODE_ENV production ] | terser --mangle --compress > dist/bundle.js",
"build:parser": "pegjs --plugin ./node_modules/ts-pegjs/src/tspegjs.js -o src/parser/sql-grammar.ts src/parser/sql-grammar.pegjs",
"serve": "browser-sync start --config bs-config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChristianMoesl/wasmdb.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ChristianMoesl/wasmdb/issues"
},
"homepage": "https://wasmdb.christianmoesl.com"
}