-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1 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
{
"name": "primal",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "go test -coverprofile=profile.cov.tmp -coverpkg=./... ./... && jest"
},
"jest": {
"testPathIgnorePatterns": [
"template"
],
"globals": {
"__DEV__": true,
"__WEB__": true
}
},
"workspaces": {
"packages": [
"lib/*"
]
},
"engines": {
"npm": "^7.0.0"
},
"author": "",
"license": "MIT",
"dependencies": {
"preact": "10.5.13",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@types/react-test-renderer": "17.0.1",
"react-test-renderer": "^17.0.2"
}
}