-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.72 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
{
"name": "apiker-demo",
"version": "1.2.0",
"description": "Apiker Demo",
"module": "./dist/shim.mjs",
"scripts": {
"build": "webpack",
"test": "jest --silent",
"coverage": "npm run test -- --coverage",
"format": "prettier --write '**/*.{js,css,json,md}'",
"wrangler": "wrangler",
"login": "npm run wrangler login",
"logout": "npm run wrangler logout",
"publish": "npm run build && npm run wrangler publish",
"tail": "wrangler tail --format=pretty"
},
"author": "Francisco Hodge <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/plugin-transform-typescript": "^7.16.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"@iarna/toml": "^2.2.5",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.17.0",
"apiker": "latest",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.4",
"babel-preset-minify": "^0.5.0",
"copy-webpack-plugin": "^10.2.4",
"crypto": "^1.0.1",
"dotenv": "^16.0.0",
"eslint": "^8.13.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.5.1",
"path-to-regexp": "^6.2.0",
"terser-webpack-plugin": "^5.3.1",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"wrangler": "latest",
"yaml": "^2.0.0"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json",
"node"
]
}
}