-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.69 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
{
"name": "@the-control-group/tcg-ui",
"version": "0.2.0",
"description": "UI kit for internal applications, based on React",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"format": "prettier '**/*.{js,json,md,less,css}' --write",
"storybook": "start-storybook",
"start": "cpx \"src/**/*.{less,js,svg}\" lib --watch",
"copy": "rm -rf lib/ && cpx \"src/**/*.{less,js,svg}\" lib",
"test": "eslint src && prettier '**/*.{js,json,md,less,css}' --check",
"lint": "eslint src --fix",
"prepublishOnly": "npm test && npm run copy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-control-group/tcg-ui.git"
},
"author": "The Control Group",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/the-control-group/tcg-ui/issues"
},
"homepage": "https://github.com/the-control-group/tcg-ui#readme",
"devDependencies": {
"@babel/core": "^7.4.4",
"@storybook/react": "^5.0.11",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.5",
"classnames": "^2.2.6",
"cpx": "^1.5.0",
"css-loader": "^2.1.1",
"eslint": "^5.3.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^2.4.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"lint-staged": "^8.1.7",
"prettier": "1.17.1",
"prop-types": "^15.6.2",
"raw-loader": "^2.0.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2"
},
"peerDependencies": {
"classnames": ">=2",
"prop-types": ">=15",
"react": ">=16",
"react-dom": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}