-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.83 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
{
"name": "@tedconf/react-ted-bootstrap",
"author": "Jon Bellah <jon@ted.com>",
"license": "MIT",
"version": "1.1.0",
"description": "A shared set of UI components for internal projects",
"main": "build/index.js",
"module": "build/index.es.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "rimraf build && tsc",
"deploy-storybook": "storybook-to-ghpages",
"format": "prettier --write \"src/**/*.tsx\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm test && npm run lint && npm run build",
"preversion": "npm run lint",
"start": "start-storybook -p 9001 -c .storybook",
"test": "jest",
"test:watch": "jest --watch",
"version": "npm run format && git add -A src"
},
"repository": {
"type": "git",
"url": "https://github.com/tedconf/react-ted-bootstrap.git"
},
"peerDependencies": {
"@emotion/core": ">= 10.0.0",
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@emotion/core": "^10.0.27",
"@storybook/addon-actions": "^5.0.3",
"@storybook/addon-info": "^5.0.3",
"@storybook/addon-options": "^5.0.3",
"@storybook/addons": "^5.0.5",
"@storybook/preset-create-react-app": "^1.5.2",
"@storybook/react": "^5.0.3",
"@storybook/storybook-deployer": "^2.3.0",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.1.3",
"@types/core-js": "^2.5.0",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.0",
"@types/react": "^16.3.5",
"@types/react-dom": "^16.8.3",
"@types/storybook__addon-actions": "^5.2.1",
"@types/storybook__addon-info": "^5.2.1",
"@types/storybook__react": "^5.2.1",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "6",
"babel-loader": "^8.0.4",
"babel-runtime": "^6.0.0",
"emotion": "^10.0.5",
"jest": "^25.1.0",
"jest-haste-map": "^25.1.0",
"jest-resolve": "^25.1.0",
"prettier": "^1.16.1",
"react": "^16.8.0",
"react-docgen-typescript-loader": "^3.0.0",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-dom": "^16.8.0",
"react-scripts": "^3.0.0",
"rimraf": "^3.0.0",
"ts-jest": "^25.2.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2",
"webpack": "^4.0.1",
"webpack-cli": "^3.0.4"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"preset": "ts-jest",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFilesAfterEnv": [
"./jest.setup.ts"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
}
}
}