This repository was archived by the owner on Mar 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.26 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
{
"name": "e2e-security-class-sample",
"version": "0.1.0",
"description": "sample for the class",
"main": "dist/index.js",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "cp data/db.template.json data/db.json && ./node_modules/.bin/json-server --watch data/db.json",
"execute": "node -r @babel/register src/post-get-node.js",
"build": "./node_modules/.bin/webpack --mode development --config webpack.config.js",
"cleanup": "rm -rf ./dist coverage .nyc_output; rm -rf ./test/html/*.bundle.js; rm -rf ./test/html/test.html; rm -rf ./node_modules"
},
"author": "Jun Kurihara",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/plugin-transform-regenerator": "7.25.9",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/register": "7.25.9",
"@babel/eslint-parser": "7.25.9",
"babel-loader": "9.2.1",
"cross-env": "7.0.3",
"eslint": "9.17.0",
"webpack": "5.97.1",
"webpack-cli": "6.0.1"
},
"dependencies": {
"@babel/runtime": "~7.27.0",
"commander": "~13.1.0",
"cross-fetch": "~4.1.0",
"js-crypto-utils": "1.0.7",
"js-encoding-utils": "0.7.3",
"json-server": "~0.17.4"
}
}