forked from fremtind/jokul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.39 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
102
103
104
105
{
"name": "@fremtind/jkl",
"private": true,
"scripts": {
"clean": "lerna run --parallel clean",
"build": "lerna run --ignore @fremtind/browserslist-config-jkl build",
"build:style": "lerna run --ignore @fremtind/*-react --ignore @fremtind/jkl-react-hooks build",
"build:docs": "lerna run build:docs",
"commit": "git-cz",
"predeploy:docs": "yarn run build:docs",
"deploy:docs": "gh-pages -d portal/public",
"typecheck": "tsc --noEmit",
"lint:formatting": "prettier -c '**/*.{js,jsx,ts,tsx}' '**/*.scss' '**/*.html'",
"lint:scripts": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint": "yarn run lint:formatting && yarn run lint:scripts",
"ci:test": "run-p test",
"test": "run-p test:unit",
"test:unit": "jest -c './jest/jest.unit.js'",
"prerelease": "yarn build",
"release": "lerna publish"
},
"dependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@testing-library/dom": "^6.0.0",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^9.1.1",
"@types/jest": "^24.0.13",
"@types/node": "^12.6.2",
"@types/react": "^16.9.4",
"@types/react-dom": "^16.9.0",
"@types/sass": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"autoprefixer": "^9.6.1",
"commitizen": "^4.0.1",
"cssnano": "^4.1.10",
"cz-lerna-changelog": "^2.0.0",
"dart-sass": "^1.23.0",
"document-register-element": "^1.13.2",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"fibers": "^4.0.1",
"gh-pages": "^2.0.1",
"glob": "^7.1.4",
"gulp": "^4.0.2",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lerna": "^3.16.4",
"lint-staged": "^9.2.1",
"mkdirp": "^0.5.1",
"node-sass-tilde-importer": "^1.0.2",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"prettier": "^1.17.1",
"rimraf": "^3.0.0",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1",
"typescript": "^3.6.2"
},
"workspaces": [
"packages/*",
"portal"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"version": "0.0.0",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{scss,css,html,json}": [
"prettier --write",
"git add"
],
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"git add",
"eslint"
]
}
}