forked from qlik-oss/picasso.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.54 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
{
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "ssh://[email protected]:qlik-oss/picasso.js.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production FORCE_COLOR=1 lerna run build --stream",
"build:watch": "cross-env FORCE_COLOR=1 lerna run build:watch --stream --no-sort",
"build:website": "cd website && yarn install && yarn run build",
"bump": "lerna publish --no-push",
"clean": "lerna clean",
"format": "prettier --write '**/*.js'",
"lint": "cross-env FORCE_COLOR=1 lerna run lint",
"link": "lerna link",
"test": "npm run test:unit && npm run test:component",
"test:component": "aw -c aw.config.js --testExt '*.comp.js'",
"test:integration:ci": "node ./test/scripts/start-puppet.js",
"test:integration:local": "aw puppet -c aw.config.js --testExt '*.int.js'",
"test:integration:server": "rollup -c ./test/integration/rollup.config.js",
"test:ptor": "aw protractor -c aw.config.ptor.js",
"test:unit": "aw -c aw.config.js --testExt '*.spec.js'",
"test:unit:watch": "aw -c aw.config.js --testExt '*.spec.js' -w",
"start": "lerna run start --stream"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"engines": {
"node": ">=8",
"yarn": "~1.9.2 || > 1.9.10"
},
"devDependencies": {
"@after-work.js/aw": "6.0.13",
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/plugin-transform-react-jsx": "7.12.10",
"@babel/preset-env": "7.12.10",
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"babel-plugin-istanbul": "6.0.0",
"coveralls": "3.1.0",
"cross-env": "7.0.3",
"eslint": "7.15.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-mocha": "8.0.0",
"eslint-plugin-prettier": "3.3.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"extend": "3.0.2",
"globby": "11.0.1",
"husky": "4.3.6",
"lerna": "3.22.1",
"mocha-junit-reporter": "2.0.0",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"protractor": "7.0.0",
"rollup": "2.35.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-serve": "1.1.0",
"rollup-plugin-uglify": "6.0.4"
},
"workspaces": [
"docs",
"packages/*",
"plugins/*",
"studio"
]
}