This repository has been archived by the owner on May 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.04 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
{
"name": "typestyle-react",
"version": "2.5.0",
"description": "React integration for TypeStyle",
"main": "./lib.commonjs/index.js",
"module": "./lib.es2015/index.js",
"types": "./lib.es2015/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.lib.es2015.json && tsc -p tsconfig.lib.commonjs.json",
"prepublishOnly": "npm run build",
"storybook": "ts-node ./node_modules/.bin/start-storybook -p 9005 -c .storybook",
"test": "tslint -p tsconfig.json && npm run build && ./node_modules/.bin/jest --runInBand",
"precommit": "lint-staged"
},
"repository": "[email protected]:heydovetail/typestyle-react.git",
"author": "Bradley Ayers <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@heydovetail/editorconfig": "^2.0.0",
"@heydovetail/tslint-config": "^2.1.0",
"@storybook/addon-storyshots": "^3.4.3",
"@storybook/react": "^3.4.3",
"@types/jest": "^22.2.3",
"@types/node": "^6.0.107",
"@types/react": "^16.3.13",
"@types/storybook__addon-storyshots": "^3.4.0",
"@types/storybook__react": "^3.0.7",
"awesome-typescript-loader": "^4.0.1",
"husky": "^0.14.3",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"lint-staged": "^7.0.5",
"prettier": "^1.12.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-test-renderer": "^16.3.2",
"ts-jest": "^22.4.4",
"ts-node": "^6.0.2",
"tslint": "^5.9.1",
"typescript": "^2.9.1",
"webpack": "^3.10.0"
},
"dependencies": {
"tslib": "^1.9.0",
"typestyle": "^2.0.1"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
},
"NODE_ENV": "test"
},
"moduleFileExtensions": [
"js",
"ts",
"tsx",
"json"
],
"testRegex": "src/.*(/__specs__/.*|\\.spec)\\.tsx?$",
"transform": {
"\\.tsx?$": "ts-jest"
}
},
"lint-staged": {
"*.tsx?": [
"prettier --write",
"tslint -p tsconfig.json",
"git add"
]
},
"prettier": {
"printWidth": 128
},
"sideEffects": false
}