-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 KB
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
{
"name": "@curiouslearning/analytics",
"version": "1.0.0",
"description": "A wrapper project for curious learning analytics",
"main": "./dist/index.js",
"private": false,
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/src/index.d.ts"
},
"./dist/index.d.ts": "./dist/index.d.ts"
},
"files": [
"README.md",
"dist"
],
"scripts": {
"build": "webpack -c ./webpack.config.js",
"test": "jest"
},
"author": "curiouslearning",
"license": "ISC",
"devDependencies": {
"@types/firebase": "^3.2.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@types/webpack": "^5.28.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.6",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@statsig/js-client": "^3.15.0",
"@statsig/web-analytics": "^3.15.0",
"firebase": "^11.4.0",
"zod": "^3.24.4"
},
"publishConfig": {
"access": "public"
}
}