forked from wixplosives/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.52 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
74
75
76
77
78
79
80
{
"name": "engine",
"workspaces": [
"examples/*",
"packages/*",
"test-fixtures/*",
"test-fixtures/workspace/packages/*"
],
"scripts": {
"clean": "rimraf \"./packages/*/dist\" \"./examples/*/dist\" \"./test-fixtures/*/dist\" \"./test-fixtures/workspace/packages/*/dist\"",
"build": "yarn build:typescript && yarn build:stylable",
"build:typescript": "tsc --build",
"build:stylable": "lerna run build:stylable",
"lint": "eslint .",
"prestart": "yarn build",
"start": "engineer start",
"pretest": "yarn lint && yarn build",
"test": "yarn test:unit",
"test:unit": "lerna run test --stream --concurrency=1",
"prettify": "npx prettier . --write"
},
"devDependencies": {
"@file-services/memory": "^6.0.0",
"@file-services/types": "^6.0.0",
"@stylable/cli": "^4.13.3",
"@stylable/core": "^4.13.3",
"@stylable/webpack-plugin": "^4.13.3",
"@ts-tools/node": "^4.0.0",
"@ts-tools/webpack-loader": "^4.0.0",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/cors": "^2.8.12",
"@types/d3-hierarchy": "^3.1.0",
"@types/d3-selection": "^3.0.2",
"@types/d3-shape": "^3.1.0",
"@types/express": "^4.17.13",
"@types/html-minifier-terser": "^6.1.0",
"@types/is-ci": "^3.0.0",
"@types/lodash.once": "^4.1.7",
"@types/minimist": "^1.2.2",
"@types/mocha": "^9.1.1",
"@types/node": "16",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/rimraf": "^3.0.2",
"@types/semver": "^7.3.10",
"@types/sinon": "^10.0.12",
"@types/sinon-chai": "^3.2.8",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"@wixc3/create-disposables": "^2.0.0",
"@wixc3/wait-for-call": "^1.0.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"electron": "^19.0.7",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"lerna": "^5.1.6",
"mocha": "^10.0.0",
"mocha-play": "^3.1.0",
"playwright-chromium": "^1.23.1",
"playwright-core": "^1.23.1",
"promise-assist": "^1.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"source-map-loader": "^4.0.0",
"typescript": "~4.7.4",
"util": "^0.12.4",
"webpack": "^5.73.0"
},
"license": "MIT",
"private": true
}