-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.27 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
{
"name": "@typecell-org/engine",
"version": "0.0.3",
"private": true,
"dependencies": {
"es-module-shims": "1.4.3",
"lodash": "^4.17.21",
"logdown": "^3.3.1",
"mobx": "^6.2.0",
"react": "^17.0.2",
"vscode-lib": "^0.1.2"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^9.2.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/jest": "^26.0.22",
"jest": "26.6.0",
"rimraf": "^3.0.2",
"typescript": "4.3.2",
"@playwright/test": "^1.18.1",
"playwright-test": "^7.2.2"
},
"source": "src/index.ts",
"types": "types/index.d.ts",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist && rimraf types",
"build": "npm run clean && tsc -p tsconfig.json",
"watch": "tsc --watch",
"install-playwright": "npx playwright install --with-deps",
"playwright": "npx playwright test",
"unittest:jest": "jest --coverage=true --config=jest.config.js",
"unittest:playwright": "playwright-test '**/*.browsertest.ts'",
"test": "npm run unittest:jest && npm run unittest:playwright"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!(unified|bail|is-plain-obj|trough|vfile|unist-util-stringify-position|monaco-editor)).+\\.js$"
],
"transform": {}
}
}