-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
72 lines (72 loc) · 2.42 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
{
"name": "react-rasta",
"version": "1.0.0",
"description": "The most powerful and flexible grid system for React",
"main": "./lib/es6/index.js",
"types": "./lib/es6/index.d.ts",
"maintainers": ["Rafael Staib"],
"repository": {
"type": "git",
"url": "https://github.com/ChilliCream/react-rasta"
},
"author": "ChilliCream",
"license": "MIT",
"keywords": ["grid", "layout", "css", "flexbox"],
"scripts": {
"build":
"yarn prettier && yarn lint && yarn test:coverage && (tsc & tsc -p ./tsconfig.es5.json)",
"build-storybook": "build-storybook",
"cover": "coveralls < coverage/lcov.info",
"lint": "yarn lint:code && yarn lint:style",
"lint:code": "tslint -p ./tsconfig.json \"./src/**/*.ts*\"",
"lint:style": "stylelint \"./src/**/*.ts*\"",
"precommit": "pretty-quick --staged",
"prettier": "prettier \"./*.+(js|json|md)\" \"./src/**/*.*\" --write",
"storybook": "start-storybook -p 6006",
"test": "jest --runInBand --config jest.config.json",
"test:coverage": "jest --runInBand --coverage --config jest.config.json"
},
"peerDependencies": {
"styled-components": ">= 3 < 4"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.0",
"@storybook/addon-links": "^3.4.0",
"@storybook/addons": "^3.4.0",
"@storybook/react": "^3.4.0",
"@types/enzyme": "^3.1.6",
"@types/enzyme-adapter-react-16": "^1.0.1",
"@types/jest": "^22.0.1",
"@types/react": "^16.0.40",
"@types/react-dom": "^16.0.4",
"@types/storybook__addon-actions": "^3.0.3",
"@types/storybook__addon-links": "^3.3.0",
"@types/storybook__react": "^3.0.7",
"awesome-typescript-loader": "^4.0.1",
"babel-core": "^6.26.0",
"babel-runtime": "^6.26.0",
"coveralls": "^3.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"husky": "^0.14.3",
"jest": "^22.0.5",
"jest-junit": "^3.6.0",
"jest-styled-components": "^5.0.1",
"prettier": "^1.11.1",
"pretty-quick": "^1.4.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"styled-components": "^3.4.9",
"stylelint": "^9.2.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.3.1",
"ts-jest": "^22.0.1",
"tslint": "^5.9.1",
"tslint-react": "^3.3.3",
"tslint-sonarts": "^1.6.0",
"typescript": "^2.9.1"
},
"dependencies": {}
}