-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.45 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
{
"name": "xsrt",
"version": "0.3.5",
"description": "A Cross-Session Screen Recording tool (XSRT)",
"repository": {
"type": "git",
"url": "https://github.com/RyanKadri/xsrt"
},
"sideEffects": false,
"scripts": {
"clean:dependencies": "lerna clean",
"clean:data": "ts-node --transpile-only --project ./tsconfig.tools.json ./scripts/cleanup-all.ts",
"initialize": "npm install && lerna bootstrap --hoist",
"package:backend": "webpack --config-name compile-backend",
"build:viewer": "webpack --config-name viewer-prod",
"start:viewer": "webpack-dev-server --config-name viewer-dev --watch-poll",
"start": "lerna run start --stream",
"start:api": "lerna run start --stream --scope=@xsrt/api",
"start:decorator": "lerna run start --stream --scope=@xsrt/decorators",
"build:api": "lerna run build --stream --scope=@xsrt/api",
"build:decorators": "lerna run build --stream --scope=@xsrt/decorators",
"build:recorder": "webpack --config-name recording-client",
"build:publish": "npm run build:recorder",
"publish:all": "lerna publish --skip-git --yes from-git",
"build:extension": "webpack --config-name compile-extension",
"test": "jest --runInBand",
"lint": "tslint",
"typecheck": "tsc --noEmit"
},
"author": "Ryan Kadri",
"license": "",
"optionalDependencies": {
"@xsrt/extension": "^0.9.0"
},
"devDependencies": {
"@types/chrome": "0.0.122",
"@types/classnames": "^2.2.9",
"@types/jest": "^26.0.0",
"@types/node": "^10.12.10",
"@types/rimraf": "^3.0.0",
"@types/ua-parser-js": "^0.7.32",
"@types/webpack": "^4.4.17",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.0.2",
"copy-webpack-plugin": "^6.0.2",
"dotenv": "^8.2.0",
"dotenv-webpack": "^1.8.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.0.1",
"lerna": "^3.22.1",
"module-alias": "^2.2.0",
"raw-loader": "^4.0.0",
"react-test-renderer": "^16.6.3",
"rimraf": "3.0.2",
"ts-jest": "26.1.2",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"ts-node-dev": "^1.0.0-pre.49",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.18.0",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"reflect-metadata": "^0.1.12",
"tslib": "^1.9.3"
}
}