-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.1 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
{
"name": "zeejs",
"license": "MIT",
"author": "Ido Rosenthal",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf ./packages/*/dist",
"build": "tsc --build && lerna run build:after --stream",
"watch": "tsc --build -w && lerna run build:after --stream",
"pretest": "npm run build && npm run test:types && npm run test:lint",
"test:types": "tsc --noEmit",
"test:lint": "eslint . --ext .js,.ts,.tsx -f codeframe",
"test": "lerna run test",
"prettify": "npx prettier \"packages/**/*.{js,ts,tsx}\" --write"
},
"devDependencies": {
"@file-services/node": "^5.4.3",
"@ts-tools/build": "^2.1.1",
"@ts-tools/node": "^3.0.1",
"@ts-tools/webpack-loader": "^3.0.2",
"@types/chai": "^4.3.0",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^9.0.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/rimraf": "^3.0.2",
"@types/sinon": "^10.0.6",
"@types/sinon-chai": "^3.2.7",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"chai": "^4.3.4",
"chai-subset": "^1.6.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-codeframe": "^7.32.1",
"glob": "^7.2.0",
"html-webpack-plugin": "^5.5.0",
"lerna": "^4.0.0",
"mini-css-extract-plugin": "^2.4.5",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
"playwright": "^1.17.1",
"pleb": "^4.0.1",
"promise-assist": "^1.3.0",
"rimraf": "^3.0.2",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0",
"source-map-loader": "^3.0.0",
"typescript": "~4.5.4",
"util": "^0.12.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.1"
},
"engines": {
"node": ">=10"
},
"repository": "git@github.com:idoros/zeejs.git"
}