forked from FireStack-Lab/icp-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.9 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
{
"description": "Root repository for the icp-js",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build:ts": "tsc -b tsconfig.json",
"bundle": "ts-node -P scripts/tsconfig.json scripts/bundle.ts umd,esm",
"bundle:webpack": "rm -rf dist && cross-env NODE_ENV=production ts-node -P scripts/tsconfig.json scripts/webpack.ts",
"clean": "lerna clean --yes && lerna run clean && rimraf includes && yarn packages:clean",
"dist": "yarn packages:bundler && yarn bundle:webpack",
"packages:cleanUnexpected": "gulp cleanUnexpected",
"packages:clean": "gulp cleanServer && yarn packages:cleanUnexpected",
"packages:bundler": "yarn packages:clean && yarn build:ts && ts-node -P scripts/tsconfig.json scripts/bundle.ts",
"dev:publish": "yarn dist && yarn packages:cleanUnexpected && lerna publish --dist-tag next --exact --no-verify-access --no-verify-registry"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/bip39": "^3.0.0",
"@types/bn.js": "^5.1.0",
"@types/camelcase": "^5.2.0",
"@types/hdkey": "^2.0.0",
"@types/node": "^15.0.2",
"@types/uuid": "^8.3.0",
"@types/webpack": "^5.28.0",
"camelcase": "^6.2.0",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"del": "^6.0.0",
"dotenv": "^9.0.2",
"gulp": "^4.0.2",
"lerna": "^3.22.1",
"mkdirp": "^1.0.4",
"node-polyfill-webpack-plugin": "^1.1.1",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.47.0",
"rollup-plugin-typescript2": "^0.30.0",
"terser-webpack-plugin": "^5.1.1",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.4",
"typescript-json-schema": "^0.50.0",
"webpack": "^5.37.0"
}
}