-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "canistergeek-ic-js",
"version": "1.0.2",
"description": "Canistergeek Javascript Library",
"main": "./lib/es5/index.js",
"author": "Canistergeek <[email protected]>",
"directories": {
"lib": "lib"
},
"homepage": "https://github.com/usergeek/canistergeek-ic-js#readme",
"keywords": [],
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rm -rf lib",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.json && npm run copy_did && npm run copy_less",
"copy_did": "cp src/api/*.did.d.ts lib/es5/api",
"copy_less": "cp src/ui/*.less lib/es5/ui"
},
"dependencies": {
"@dfinity/agent": "^0.11.3",
"@dfinity/auth-client": "^0.11.3",
"@dfinity/principal": "^0.11.3",
"@types/ace": "^0.0.47",
"@types/lodash": "^4.14.178",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"antd": "^4.16.12",
"chart.js": "^3.7.0",
"chartjs-adapter-moment": "^1.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"query-string": "^7.0.1",
"react": "17.0.2",
"react-ace": "^9.5.0",
"react-chartjs-2": "^4.0.1",
"react-dom": "17.0.2",
"react-router-dom": "^5.3.0",
"use-custom-compare": "^1.2.0"
},
"devDependencies": {
"@types/node": "^17.0.8"
}
}