-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 799 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 799 Bytes
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
{
"name": "micro-stat",
"version": "0.10.0",
"main": "dist/micro-stat.umd.js",
"module": "dist/micro-stat.es.js",
"source": "src/index.js",
"files": [
"dist"
],
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"setupFilesAfterEnv": ["./jestSetup.js"]
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "jest",
"serve": "vite preview",
"yalc": "yarn build && yalc publish"
},
"devDependencies": {
"@babel/preset-env": "7.15.8",
"axios-mock-adapter": "1.20.0",
"babel-jest": "27.3.1",
"eslint": "7.32.0",
"jest": "27.3.1",
"jest-extended": "0.11.5",
"regenerator-runtime": "0.13.9",
"vite": "2.9.16"
},
"dependencies": {
"axios": "0.23.0",
"web-vitals": "2.1.2"
}
}