-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
106 lines (106 loc) · 3.25 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
106
{
"name": "@integec/grid-tools",
"version": "0.0.0-development",
"description": "Integ Grid Tools",
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib --source-maps inline",
"build:watch": "rimraf lib && babel src --out-dir lib --watch --source-maps inline",
"build:prod": " rimraf lib && cross-env NODE_ENV=production babel src --out-dir lib --source-maps",
"storybook": "start-storybook -h 0.0.0.0 -p 6006",
"storybook:local": "start-storybook -h localhost -p 6006",
"build-storybook": "build-storybook",
"test": "jest",
"test:watch": "jest --watch",
"test:cover": "jest --coverage",
"pretty": "prettier --debug-check \"src/**/*.js\" ",
"pretty:write": "prettier --write \"src/**/*.js\"",
"lint:fix-file": "eslint --fix",
"semantic-release": "semantic-release",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https:[email protected]:fobbyal/grid-tools.git"
},
"author": "Alex Liang <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.0",
"babel-plugin-ramda": "^2.0.0",
"chance": "^1.0.18",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^9.0.2",
"moment": "^2.24.0",
"numeral": "^2.0.6",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react-hot-loader": "^4.12.3",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.18",
"shallow-equal-explain": "^0.0.4"
},
"dependencies": {
"data.maybe": "^1.2.3",
"dom-helpers": "^3.4.0",
"downshift": "^3.2.7",
"fbjs": "^1.0.0",
"ramda": "^0.25.0",
"react": "^16.8.6",
"react-broadcast": "^0.7.1",
"react-dom": "^16.8.6",
"react-popper": "^1.3.3",
"react-virtualized": "^9.21.1",
"styled-components": "2.4.0"
},
"lint-staged": {
"*.{js,json,css,jsx,yml,yaml,less,ts,tsx,md,graphql}": [
"prettier --single-quote --trailing-comma es5 --no-semi --write",
"git add"
],
"*.js": [
"eslint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}