This repository was archived by the owner on Aug 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.28 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.28 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
86
87
88
89
90
91
92
93
94
95
{
"name": "@youwol/python-playground",
"description": "Python playground application",
"version": "0.1.7-wip",
"author": "greinisch@youwol.com",
"homepage": "https://github.com/youwol/python-playground#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": {
"@youwol/fv-code-mirror-editors": "^0.3.1",
"@youwol/os-core": "^0.1.5",
"@youwol/fv-tabs": "^0.2.1",
"@youwol/os-top-banner": "^0.1.1",
"@youwol/cdn-client": "^2.0.3",
"@youwol/http-clients": "^2.0.1",
"@youwol/flux-view": "^1.1.1",
"@youwol/fv-context-menu": "^0.1.1",
"@youwol/fv-tree": "^0.2.3",
"lodash": "^4.17.15",
"rxjs": "^6.5.5",
"@youwol/logging": "^0.1.0",
"uuid": "^8.3.2",
"@youwol/pyodide-helpers": "^0.1.4"
},
"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/fv-code-mirror-editors": "^0.3.1",
"@youwol/os-core": "^0.1.5",
"@youwol/fv-tabs": "^0.2.1",
"@youwol/os-top-banner": "^0.1.1",
"@youwol/cdn-client": "^2.0.3",
"@youwol/http-clients": "^2.0.1",
"@youwol/flux-view": "^1.1.1",
"@youwol/fv-context-menu": "^0.1.1",
"@youwol/fv-tree": "^0.2.3",
"lodash": "^4.17.15",
"rxjs": "^6.5.5",
"@youwol/logging": "^0.1.0",
"uuid": "^8.3.2",
"@youwol/pyodide-helpers": "^0.1.4"
},
"aliases": []
},
"resolutions": {
"@youwol/fv-code-mirror-editors/typescript": "5.3.3"
}
}