-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.43 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
{
"private": true,
"name": "storex-hub-boilerplate",
"version": "0.1.0",
"description": "Storex Hub app boilerplate",
"license": "MIT",
"scripts": {
"start": "ts-node ts/main.ts",
"prepare": "tsc",
"prepare:watch": "npm run prepare -- -w",
"test": "mocha --require ts-node/register \"ts/**/*.test.ts\"",
"test:watch": "mocha -r source-map-support/register -r ts-node/register \"ts/**/*.test.ts\" --watch --watch-extensions ts",
"test:coverage": "rm -rf lib ; yarn prepare && nyc --reporter=html --reporter=text mocha 'lib/**/*.test.js'",
"build:prod": "webpack --mode production",
"build:dev": "webpack --mode development"
},
"keywords": [],
"author": "Vincent den Boer",
"dependencies": {
"@worldbrain/storex": "^0.4.1",
"@worldbrain/storex-pattern-modules": "^0.4.0",
"@worldbrain/storex-middleware-change-watcher": "^0.1.1",
"@worldbrain/storex-hub": "^0.4.0",
"socket.io-client": "^2.3.0",
"lodash": "^4.17.10"
},
"devDependencies": {
"@types/expect": "^1.20.4",
"@types/lodash": "^4.14.149",
"@types/mocha": "^2.2.44",
"@types/node": "^10.12.11",
"@types/socket.io-client": "^1.4.32",
"expect": "~25.2.6",
"mocha": "^4.0.1",
"source-map-support": "0.5.16",
"typescript": "^3.8.0",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"@worldbrain/storex-hub-interfaces": "^0.1.2"
}
}