forked from conversionxl/aybolit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.16 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
91
92
93
94
95
96
97
98
99
100
101
{
"name": "aybolit-workspace",
"private": true,
"description": "Web Components library built with LitElement",
"author": "CXL",
"contributors": [
"Serhii Kulykov <[email protected]>"
],
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"argos": "argos upload test/visual/screenshots/chrome --token $ARGOS_TOKEN || true",
"build": "yarn build-styling",
"build-styling": "node packages/sass-render/bin/sass-render.js -s \"packages/*/scss/**/*.scss\"",
"deploy-storybook": "yarn --cwd packages/storybook storybook-to-ghpages",
"dist": "lerna run dist",
"lint": "npm-run-all --parallel lint:*",
"lint:eclint": "eclint check packages scripts test . !.*/* !**/node_modules/** !**/pkg/**",
"lint:js": "eslint *.js packages --ignore-path .gitignore",
"lint:scss": "stylelint packages/**/*.scss",
"storybook": "yarn --cwd packages/storybook start-storybook -p 6006",
"test": "karma start",
"test:visual": "rimraf tmp && BABEL_ENV=visual webpack --config test/visual/webpack.config.js && rimraf test/visual/screenshots/chrome/* && vrtest run --config test/visual/vrtest.config.js --record",
"watch": "node scripts/watcher.js"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"node-watch": "^0.6.2"
},
"devDependencies": {
"@babel/core": "^7.7.0",
"@babel/plugin-proposal-decorators": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.7.0",
"@babel/runtime": "^7.7.0",
"@open-wc/testing-helpers": "^0.9.5",
"@webcomponents/webcomponentsjs": "^2.2.10",
"argos-cli": "^0.1.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"eclint": "^2.8.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-lit": "^1.0.0",
"husky": "^3.1.0",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0-rc.5",
"lerna": "^3.20.1",
"lint-staged": "^9.5.0",
"lit-html": "^1.0.0",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5",
"polymer-webpack-loader": "^2.0.3",
"prettier": "^1.19.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^3.0.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"stylelint": "^12.0.1",
"stylelint-config-prettier": "^8.0.0",
"stylelint-config-twbs-bootstrap": "^1.1.0",
"vrtest": "^0.2.0",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"eclint fix",
"git add"
],
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.scss": [
"stylelint --syntax=scss",
"prettier --single-quote=false --write",
"git add"
]
}
}