-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "@lona/site-components",
"version": "0.0.5",
"description": "Components for Lona-generated websites",
"main": "lib/index.js",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib && tsc --declaration",
"build:watch": "rm -rf ./lib && tsc --declaration --watch",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"repository": "https://github.com/Lona/site-components",
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"react": "*",
"styled-components": "*"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/mdx-js__react": "^1.5.2",
"@types/node": "^13.7.6",
"@types/react": "^16.9.38",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.0",
"jest": "^25.1.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"styled-components": "^5.1.1",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
},
"prettier": {
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "es5",
"semi": false
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}