This repository has been archived by the owner on Jul 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.62 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
{
"name": "@mujo/box",
"version": "5.0.2",
"description": "A React utility to add a style guide to primative components",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "npm run lint && jest",
"fmt": "prettier '{src,public}/**/*.{ts,tsx}' --write",
"lint": "eslint '{src,public}/**/*.{ts,tsx}'",
"build": "npm run build:code && npm run build:def",
"build:code": "NODE_ENV=production babel src --out-dir dist --extensions '.ts,.tsx'",
"build:def": "tsc --emitDeclarationOnly",
"prepublish": "npm run build"
},
"keywords": [
"react",
"emotionjs",
"style guide"
],
"author": "Jacob Lowe",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-typescript": "^7.9.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.9.4",
"@emotion/core": "^10.0.28",
"@mujo/eslint-config": "^1.0.4",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-react-app": "^9.0.1",
"eslint": "^5.16.0",
"jest": "^24.9.0",
"jest-environment-jsdom-fourteen": "0.1.0",
"jest-image-snapshot": "^2.9.0",
"jest-resolve": "26.1.0",
"jest-watch-typeahead": "^0.4.0",
"prettier": "^2.2.0",
"react": "^16.9.0",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.9.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"@emotion/core": ">=11",
"react": ">=16"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js}"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{ts,tsx}",
"<rootDir>/src/**/*.{spec,test}.{ts,tsx}"
],
"testEnvironment": "jest-environment-jsdom-fourteen",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$"
],
"modulePaths": [],
"moduleFileExtensions": [
"js",
"ts",
"json",
"tsx",
"node"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"babel": {
"presets": [
[
"react-app",
{
"runtime": "automatic"
}
],
"@babel/preset-typescript"
]
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@types/object-keys": "^1.0.1",
"object-keys": "^1.1.1"
}
}