-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
90 lines (90 loc) · 2.81 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
81
82
83
84
85
86
87
88
89
90
{
"name": "stylable",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf -g ./packages/*/{dist,cjs,esm}",
"build": "tsc --build && node scripts/build.js",
"build:dev": "tsc --build",
"watch": "tsc --build -w",
"lint": "eslint",
"pretest": "npm run build",
"test": "node --enable-source-maps scripts/test-runner.js --parallel",
"test:integrations": "npm run test -- --i",
"test:core-packages": "npm run test -- --cp",
"test:coverage:dev": "npm run build && c8 -x 'packages/*/dist/test' -r html-spa npm run test && serve coverage",
"prettify": "npx prettier . --write"
},
"devDependencies": {
"@file-services/memory": "^9.4.1",
"@file-services/node": "^9.4.1",
"@file-services/path": "^9.4.1",
"@file-services/types": "^9.4.1",
"@rollup/plugin-html": "^1.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/chai": "^4.3.19",
"@types/chai-subset": "^1.3.5",
"@types/css-selector-tokenizer": "^0.7.4",
"@types/cssesc": "^3.0.2",
"@types/find-config": "^1.0.4",
"@types/flat": "^5.0.5",
"@types/js-beautify": "^1.14.3",
"@types/json-schema": "^7.0.15",
"@types/lodash.camelcase": "^4.3.9",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.clonedeepwith": "^4.5.9",
"@types/lodash.upperfirst": "^4.3.9",
"@types/mime": "^3.0.4",
"@types/mocha": "^10.0.9",
"@types/node": "20",
"@types/postcss-safe-parser": "^5.0.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/validate-npm-package-name": "^4.0.2",
"@types/yargs": "^17.0.33",
"@typescript-eslint/rule-tester": "^8.14.0",
"autoprefixer": "^10.4.20",
"c8": "^10.1.2",
"chai": "^4.3.10",
"chai-subset": "^1.6.0",
"create-listening-server": "^2.1.0",
"css-loader": "^7.1.2",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"mocha": "^10.8.2",
"node-eval": "^2.0.0",
"npm-run-all": "^4.1.5",
"playwright-chromium": "^1.48.2",
"playwright-core": "^1.48.2",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"promise-assist": "^2.0.1",
"raw-loader": "^4.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.7",
"rollup": "^4.26.0",
"source-map": "^0.7.4",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"ts-expect": "^1.3.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.14.0",
"url-loader": "^4.1.1",
"webpack": "^5.96.1",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=20"
},
"repository": "[email protected]:wix/stylable.git",
"author": "Wix.com",
"license": "MIT"
}