forked from stylify/packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·105 lines (105 loc) · 4.99 KB
/
package.json
File metadata and controls
executable file
·105 lines (105 loc) · 4.99 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
96
97
98
99
100
101
102
103
104
105
{
"name": "@stylify/packages",
"description": "Stylify monorepo",
"private": true,
"author": "Vladimír Macháček",
"license": "MIT",
"scripts": {
"repo:init": "yarn install && lerna exec -- yarn link",
"repo:pack": "lerna run pack",
"repo:publish": "npm login && yarn build && yarn build:generate-stats && lerna publish --no-push --no-git-tag-version --yes",
"watch": "cross-env watch=true yarn build",
"build": "ts-node scripts/build.ts",
"build:notypes": "cross-env typesDisabled=true ts-node scripts/build.ts",
"build:generate-stats": "ts-node scripts/build-generate-stats.ts",
"astro:build": "cross-env packages=astro yarn build",
"astro:build:notypes": "cross-env packages=astro yarn build:notypes",
"astro:watch": "cross-env packages=astro watch=true yarn watch",
"astro:plg:build": "cd packages/astro/playground && yarn build",
"astro:plg:dev": "cd packages/astro/playground && yarn dev",
"astro:plg:start": "cd packages/astro/playground && yarn start",
"astro:test": "yarn jest:test packages/astro/tests/jest",
"autoprefixer:build": "cross-env packages=autoprefixer yarn build",
"autoprefixer:build:notypes": "cross-env packages=autoprefixer yarn build:notypes",
"autoprefixer:watch": "cross-env packages=autoprefixer watch=true yarn watch",
"autoprefixer:test": "yarn jest:test packages/autoprefixer/tests/jest",
"bundler:build": "cross-env packages=bundler yarn build",
"bundler:build:notypes": "cross-env packages=bundler yarn build:notypes",
"bundler:watch": "cross-env packages=bundler watch=true yarn watch",
"bundler:plg:start": "ts-node packages/bundler/playground/bundles.ts",
"bundler:test": "yarn jest:test packages/bundler/tests/jest",
"stylify:build": "cross-env packages=stylify yarn build",
"stylify:build:notypes": "cross-env packages=stylify yarn build:notypes",
"stylify:watch": "cross-env packages=stylify watch=true yarn watch",
"stylify:test": "yarn jest:test packages/stylify/tests/jest",
"stylify:gdp": "node --experimental-modules packages/stylify/tools/default-preset-generator",
"stylify:mqe": "node --experimental-modules packages/stylify/tools/media-queries-extractor",
"nuxt:build": "cross-env packages=nuxt yarn build",
"nuxt:build:notypes": "cross-env packages=nuxt yarn build:notypes",
"nuxt:test": "yarn jest:test packages/nuxt/tests/jest",
"nuxt:watch": "cross-env packages=nuxt watch=true yarn watch",
"nuxt:plg:build": "cd packages/nuxt/playground && yarn build",
"nuxt:plg:dev": "cd packages/nuxt/playground && yarn dev",
"nuxt:plg:start": "cd packages/nuxt/playground && yarn start",
"nuxt-module:build": "cross-env packages=nuxt-module yarn build",
"nuxt-module:build:notypes": "cross-env packages=nuxt-module yarn build:notypes",
"nuxt-module:watch": "cross-env packages=nuxt-module watch=true yarn watch",
"nuxt-module:test": "yarn jest:test packages/nuxt-module/tests/jest",
"nuxt-module:plg:build": "cd packages/nuxt-module/playground && yarn install && yarn build",
"nuxt-module:plg:dev": "cd packages/nuxt-module/playground && yarn install && yarn dev",
"nuxt-module:plg:start": "cd packages/nuxt-module/playground && yarn start",
"profiler:build": "cross-env packages=profiler yarn build",
"profiler:build:notypes": "cross-env packages=profiler typesDisable=true yarn build",
"profiler:watch": "cross-env packages=profiler watch=true yarn watch",
"unplugin:build": "cross-env packages=unplugin yarn build",
"unplugin:build:notypes": "cross-env packages=unplugin yarn build:notypes",
"unplugin:watch": "cross-env packages=unplugin watch=true yarn watch",
"unplugin:test": "yarn jest:test packages/unplugin/tests/jest",
"eslint:check": "eslint packages/**/src/**/*.{js,ts}",
"eslint:fix": "yarn eslint:check --fix",
"jest:test": "jest --clearCache && node --experimental-vm-modules node_modules/jest/bin/jest --maxWorkers 1",
"jest:test+coverage": "yarn jest:test --collect-coverage --coverageProvider=v8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stylify/packages.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/stylify/packages/issues"
},
"homepage": "https://github.com/stylify/packages/#readme",
"devDependencies": {
"@babel/core": "^7.20",
"@babel/plugin-proposal-class-properties": "^7.18",
"@babel/plugin-proposal-object-rest-spread": "^7.20",
"@babel/preset-env": "^7.20",
"@babel/preset-typescript": "^7.18",
"@types/jest": "^29.2",
"@types/node": "^18.11",
"@typescript-eslint/eslint-plugin": "^5.48",
"@typescript-eslint/parser": "^5.48",
"autoprefixer": "^10.4",
"babel-jest": "^29.3",
"cross-env": "^7.0",
"esbuild": "^0.16",
"esbuild-sass-plugin": "^2.4",
"eslint": "^8.31",
"fast-glob": "^3.2",
"fs-extra": "^11.1",
"identity-obj-proxy": "^3.0",
"jest": "^29.3",
"jest-environment-jsdom": "^29.3",
"jest-environment-node": "^29.3",
"lerna": "^6.0",
"promise": "^8.3.0",
"ts-jest": "^29.0",
"ts-node": "^10.9",
"tslib": "^2.4",
"typescript": "^4.9",
"v8-compile-cache": "^2.3"
},
"workspaces": [
"packages/*"
]
}