forked from tabler/tabler-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.98 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.98 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "tabler-react",
"version": "1.6.0",
"description": "",
"author": "jonthomp and AaronCoplan",
"license": "MIT",
"repository": "tabler/tabler-react",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"test": "CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build":
"yarn run copytablercsstodist && rollup -c && flow-copy-source -v src dist",
"start": "yarn run copytablercsstodist && rollup -c -w",
"prepare": "yarn run build && yarn run copytablercsstodist",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build",
"precommit":
"pretty-quick --staged && lint-staged && cd scripts && python propscheck.py && cd .. && ./scripts/runflow",
"format": "prettier --write \"+(src|example)/**/*.js\"",
"lint": "eslint --ext .js src/**/*",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"commitmsg": "commitlint -e $GIT_PARAMS",
"copytablercsstodist":
"mkdir -p dist && cp src/Tabler.css src/Tabler.RTL.css dist/ && cp -r src/fonts src/images dist/",
"cm": "git-cz"
},
"lint-staged": {
"src/**/*.js": "eslint --max-warnings=0"
},
"dependencies": {
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/git": "^5.0.0",
"classnames": "^2.2.5",
"commitlint": "^6.2.0",
"react-popper": "^1.0.0-beta.6",
"react-styleguidist": "^7.0.9",
"react-text-mask": "^5.4.1",
"webpack": "^3.8.1"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"empty": "^0.10.1",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.72.0",
"flow-copy-source": "^1.3.0",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"prettier": "1.13.0",
"pretty-quick": "^1.4.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "^1.1.1",
"rollup": "0.59.1",
"rollup-plugin-babel": "3.0.4",
"rollup-plugin-commonjs": "9.1.3",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-peer-deps-external": "2.1.1",
"rollup-plugin-postcss": "1.6.1",
"rollup-plugin-url": "1.4.0",
"semantic-release": "^15.5.0",
"typed-styles": "^0.0.5"
},
"files": ["dist"],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}