-
-
Notifications
You must be signed in to change notification settings - Fork 174
/
package.json
34 lines (34 loc) · 1.3 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
{
"private": true,
"workspaces": [
"packs/step-parser",
"packs/themes",
"packs/standalone",
"packs/code-surfer",
"sites/book",
"sites/docs"
],
"devDependencies": {
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"execa": "^2.0.1",
"npm-run-all": "^4.1.5",
"fs-extra": "^8.1.0"
},
"scripts": {
"format": "prettier --ignore-path .gitignore --write '**/*.{js,jsx,css,md,mdx}'",
"format:check": "prettier --ignore-path .gitignore --check '**/*.{js,jsx,css,md,mdx}'",
"build:step-parser": "yarn workspace @code-surfer/step-parser build",
"build:themes": "yarn workspace @code-surfer/themes build",
"build:standalone": "yarn workspace @code-surfer/standalone build",
"build:codesurfer": "yarn workspace code-surfer build",
"build:sites": "node sites/build",
"prepare": "run-s build:step-parser build:themes build:standalone build:codesurfer",
"predeploy": "run-s prepare build:sites",
"test:step-parser": "yarn workspace @code-surfer/step-parser test",
"test:themes": "yarn workspace @code-surfer/themes test",
"test:standalone": "yarn workspace @code-surfer/standalone test",
"test:codesurfer": "yarn workspace code-surfer test",
"test": "run-p format:check test:step-parser test:themes test:standalone test:codesurfer"
}
}