-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.91 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.91 KB
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
80
81
82
83
84
85
{
"name": "@youwol/platform",
"description": "OS like frontend application of YouWol platform.",
"version": "0.2.3-wip",
"author": "greinisch@youwol.com",
"homepage": "https://github.com/youwol/platform#README.md",
"main": "dist/index.html",
"types": "src/index.ts",
"scripts": {
"clean": "del-cli dist",
"auto-gen": "python template.py",
"build": "yarn build:dev",
"pre-build": "yarn clean",
"build:dev": "yarn pre-build && webpack --mode development",
"build:prod": "yarn pre-build && webpack --mode production",
"lint-check": "yarn lint-prettier-check && yarn lint-eslint-check",
"lint-prettier-check": "prettier --check ./src",
"lint-eslint-check": "eslint ./src",
"test": "jest -i",
"test-coverage": "jest -i --collect-coverage",
"doc": "typedoc",
"publish-npm-public": "yarn build:prod && yarn test-coverage && yarn publish --access public",
"start": "webpack serve"
},
"prettier": "@youwol/prettier-config",
"eslintConfig": {
"extends": [
"@youwol"
]
},
"dependencies": {
"marked": "^4.2.3",
"@youwol/os-core": "^0.2.0",
"@youwol/http-clients": "^3.0.1",
"uuid": "^8.3.2",
"codemirror": "^5.52.0",
"@youwol/rx-context-menu-views": "^0.2.0",
"@youwol/rx-tab-views": "^0.3.0",
"@youwol/rx-group-views": "^0.3.0",
"@youwol/rx-vdom": "^1.0.1",
"rxjs": "^7.5.6",
"@youwol/rx-code-mirror-editors": "0.5.0",
"@youwol/webpm-client": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.11.19",
"@types/webpack": "^5.28.0",
"@youwol/eslint-config": "^1.2.1",
"@youwol/jest-preset": "^1.2.1",
"@youwol/prettier-config": "^1.2.1",
"@youwol/tsconfig": "^1.2.1",
"css-loader": "^6.8.1",
"del-cli": "^5.1.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.3",
"isomorphic-fetch": "^3.0.0",
"mini-css-extract-plugin": "^2.7.6",
"source-map-loader": "4.0.1",
"ts-loader": "9.5.0",
"ts-node": "10.9.2",
"tsx": "4.7.1",
"typedoc": "^0.25.7",
"typescript": "5.3.3",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "^4.15.1",
"lz-string": "^1.4.4"
},
"webpm": {
"dependencies": {
"@youwol/os-core": "^0.2.0",
"@youwol/http-clients": "^3.0.1",
"uuid": "^8.3.2",
"@youwol/rx-context-menu-views": "^0.2.0",
"@youwol/rx-tab-views": "^0.3.0",
"@youwol/rx-group-views": "^0.3.0",
"@youwol/rx-vdom": "^1.0.1",
"rxjs": "^7.5.6",
"@youwol/webpm-client": "^3.0.0"
},
"aliases": []
}
}