This repository has been archived by the owner on Sep 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
90 lines (90 loc) · 2.96 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
{
"name": "@cliqz/components",
"version": "0.1.0",
"description": "Cliqz Components library",
"license": "MPL-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/cliqz/cliqz-components.git"
},
"scripts": {
"build-storybook": "build-storybook",
"prebuild": "lerna run 'tsc lint'",
"build": "lerna exec 'BABEL_ENV=build babel src --root-mode upward --out-dir dist --source-maps --extensions .ts,.tsx --delete-dir-on-start --no-comments --copy-files'",
"postbuild": "yarn build:declarations",
"commit": "git-cz",
"fix": "run-p -c 'lint:ts-* --fix'",
"lint:css": "stylelint 'packages/**/*.ts{,x}'",
"lint:ts-prod": "tslint --config tslint.prod.json 'packages/**/*.ts{,x}'",
"lint:ts-test": "tslint --config tslint.test.json 'packages/**/*.{test,story}.ts{,x}'",
"lint:ts": "run-p -c lint:ts-*",
"lint": "run-p -c lint:*",
"prerelease": "yarn build",
"release": "lerna publish",
"storybook": "start-storybook -p 6006",
"test": "jest --detectOpenHandles",
"tsc": "tsc",
"build:declarations": "lerna exec 'tsc --project ./tsconfig.build.json'"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@storybook/addon-actions": "^5.0.10",
"@storybook/addon-knobs": "^5.0.10",
"@storybook/addon-links": "^5.0.10",
"@storybook/addons": "^5.0.10",
"@storybook/react": "^5.0.10",
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.12",
"@types/react-native": "^0.57.50",
"@types/storybook__addon-actions": "^3.4.2",
"@types/storybook__addon-knobs": "^5.0.0",
"@types/storybook__addon-links": "^3.3.4",
"@types/storybook__react": "^4.0.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"commitizen": "^3.1.1",
"customize-cra": "^0.2.12",
"cz-lerna-changelog": "^2.0.2",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"jest": "^24.7.1",
"jest-cli": "^24.8.0",
"lerna": "^3.13.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-native-web": "^0.11.2",
"stylelint": "^10.0.1",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-standard": "^18.3.0",
"tldts": "^5.0.3",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.1.1",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"workspaces": [
"./packages/*"
],
"dependencies": {
"react-native-svg": "^9.5.3"
}
}