forked from BlazeSoftware/atoms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.75 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.75 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
{
"name": "blaze",
"private": true,
"version": "0.0.0",
"description": "Open Source UI Toolkit",
"workspaces": [
"packages/*"
],
"scripts": {
"css.dev": "cd packages/css && stencil build --dev --watch --serve",
"css.test": "stylelint \"packages/css/src/scss/**/*.scss\"",
"css.build": "cd packages/css && stencil build",
"molecules.dev": "cd packages/molecules && stencil build --dev --watch --serve",
"molecules.dev.es5": "cd packages/molecules && stencil build --dev --watch --serve --es5",
"molecules.test.spec": "cd packages/molecules && stencil test --spec --watch",
"molecules.test.e2e": "cd packages/molecules && stencil test --e2e --watch",
"molecules.test": "cd packages/molecules && stencil test --spec --e2e",
"molecules.build": "cd packages/molecules && stencil build --prerender",
"atoms.dev": "cd packages/atoms && stencil build --dev --watch --serve",
"atoms.dev.es5": "cd packages/atoms && stencil build --dev --watch --serve --es5",
"atoms.test.spec": "cd packages/atoms && stencil test --spec --watch",
"atoms.test.e2e": "cd packages/atoms && stencil test --e2e --watch",
"atoms.test": "cd packages/atoms && stencil test --spec --e2e",
"atoms.build": "cd packages/atoms && stencil build --prerender",
"site.dev": "cd packages/site && stencil build --dev --watch --serve",
"site.serve": "cd packages/site && stencil build --prerender --watch --serve",
"site.build": "cd packages/site && stencil build --prerender",
"gh-btns.dev": "cd packages/github-buttons && stencil build --dev --watch --serve",
"gh-btns.test.spec": "cd packages/github-buttons && stencil test --spec --watch",
"gh-btns.test.e2e": "cd packages/github-buttons && stencil test --e2e --watch",
"gh-btns.test": "cd packages/github-buttons && stencil test --spec --e2e",
"gh-btns.build": "cd packages/github-buttons && stencil build --prerender",
"toggles.dev": "cd packages/toggles && stencil build --dev --watch --serve",
"toggles.test.spec": "cd packages/toggles && stencil test --spec --watch",
"toggles.test.e2e": "cd packages/toggles && stencil test --e2e --watch",
"toggles.test": "cd packages/toggles && stencil test --spec --e2e",
"toggles.build": "cd packages/toggles && stencil build --prerender",
"test": "npm run css.test && npm run toggles.test && npm run gh-btns.test && npm run atoms.test && npm run molecules.test",
"build": "npm run css.build && npm run toggles.build && npm run gh-btns.build && npm run atoms.build && npm run molecules.build && npm run site.build",
"prettier": "prettier --write **/*",
"commit": "npm run prettier && git add . && commit",
"postinstall": "lerna bootstrap",
"release": "npm run test && npm run build && lerna publish --conventional-commits"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run test"
}
},
"devDependencies": {
"@blaze/atoms": "^5.0.0",
"@blaze/css": "^2.0.1",
"@commitlint/cli": "7.2.0",
"@commitlint/config-conventional": "7.1.2",
"@commitlint/prompt-cli": "7.2.0",
"@commitlint/travis-cli": "7.2.0",
"@stencil/core": "0.16.0",
"@stencil/postcss": "0.1.0",
"@stencil/router": "0.3.1",
"@stencil/sass": "0.1.1",
"@types/cssnano": "4.0.0",
"@types/jest": "23.3.9",
"@types/puppeteer": "1.6.4",
"cssnano": "4.1.7",
"file-exists": "5.0.1",
"husky": "1.1.2",
"jest": "23.6.0",
"jest-cli": "23.6.0",
"lerna": "3.4.3",
"postcss": "7.0.6",
"prettier": "1.14.3",
"puppeteer": "1.8.0",
"run-sequence": "2.2.1",
"stylelint": "9.9.0",
"stylelint-config-rational-order": "0.0.2",
"stylelint-config-standard": "18.2.0",
"stylelint-scss": "3.4.0"
},
"dependencies": {}
}