This repository was archived by the owner on Jan 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.13 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.13 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
{
"name": "raster-ui",
"private": true,
"publishConfig": {
"access": "public"
},
"workspaces": [
"packages/*",
"examples/*"
],
"version": "0.0.1",
"description": "",
"keywords": [
"postcss",
"tailwindcss",
"typography",
"baseline",
"raster",
"grid",
"rhythm"
],
"author": "Apostolos Christodoulou <a7sc11u@gmail.com> (@a7sc11u)",
"main": "index.js",
"license": "MIT",
"scripts": {
"postinstall": "lerna bootstrap",
"start": "npm-run-all --parallel common:dev postcss:dev test",
"build": "npm-run-all common:build plugins:build",
"test": "jest --watch --onlyChanged --watchman --forceExit --detectOpenHandles --notify --notifyMode=failure",
"docs": "npm-run-all --parallel common:dev docs:dev",
"postcss": "npm-run-all --parallel common:dev postcss:dev demo:postcss:dev",
"tailwind": "npm-run-all --parallel common:dev tailwind:dev demo:tailwind:dev",
"common:dev": "npm-run-all --parallel types:dev core:dev utils:dev",
"types:dev": "yarn workspace @raster-ui/types develop",
"core:dev": "yarn workspace @raster-ui/core develop",
"utils:dev": "yarn workspace @raster-ui/utils develop",
"docs:dev": "yarn workspace @raster-ui/docs develop",
"scales:dev": "yarn workspace @raster-ui/scales develop",
"postcss:dev": "yarn workspace @raster-ui/postcss develop",
"tailwind:dev": "yarn workspace @raster-ui/tailwindcss develop",
"themes:dev": "npm-run-all --parallel theme:plex:dev && theme:test:dev",
"theme:plex:dev": "yarn workspace @raster-ui/theme-plex develop",
"theme:test:dev": "yarn workspace @raster-ui/theme-test develop",
"demo:postcss:dev": "yarn workspace demo-postcss develop",
"demo:tailwind:dev": "yarn workspace demo-tailwindcss develop",
"common:build": "npm-run-all types:build core:build utils:build",
"types:build": "yarn workspace @raster-ui/types build",
"core:build": "yarn workspace @raster-ui/core build",
"utils:build": "yarn workspace @raster-ui/utils build",
"docs:build": "yarn workspace @raster-ui/docs build",
"plugins:build": "npm-run-all postcss:build tailwind:build scales:build themes:build",
"scales:build": "yarn workspace @raster-ui/scales build",
"postcss:build": "yarn workspace @raster-ui/postcss build",
"tailwind:build": "yarn workspace @raster-ui/tailwindcss build",
"themes:build": "npm-run-all theme:plex:dev",
"theme:plex:build": "yarn workspace @raster-ui/theme-plex build",
"theme:test:build": "yarn workspace @raster-ui/theme-test build",
"release": "lerna publish",
"upd": "lerna updated",
"boot": "lerna bootstrap"
},
"devDependencies": {
"@testing-library/cypress": "^5.0.1",
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.1.4",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-test-renderer": "^16.9.0",
"benchmark": "^2.1.4",
"jest": "^24.9.0",
"jest-emotion": "^10.0.17",
"jest-matcher-css": "^1.1.0",
"jshint": "^2.10.2",
"lerna": "^3.20.2",
"prun": "^1.0.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0",
"ts-jest": "^24.1.0"
},
"dependencies": {
"npm-run-all": "^4.1.5"
}
}