-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
91 lines (91 loc) · 2.58 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@stakenow/siwt",
"version": "0.0.5",
"description": "Sign in with Tezos",
"main": "dist/siwt.js",
"module": "dist/siwt.js",
"typings": "dist/types/siwt.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"start": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js",
"test": "jest",
"test:watch": "jest --watchAll --runInBand --detectOpenHandles",
"code:format": "prettier --write 'src/**/*.ts' 'demo/**/*.js'",
"code:lint": "eslint 'src/**/*.ts' 'demo/**/*.js'",
"demo:server:start": "dotenv -e .env node ./demo/server/index.js",
"demo:ui:build": "webpack --mode=production --node-env=production",
"demo:ui:watch": "webpack --watch",
"demo:ui:start": "webpack serve --mode=development --open"
},
"keywords": [
"Tezos",
"Identity",
"Sign in"
],
"author": "royscheeren",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@rollup/plugin-replace": "^4.0.0",
"@types/axios": "^0.14.0",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.25",
"@types/ramda": "^0.28.11",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"dotenv-cli": "^5.1.0",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"node-polyfill-webpack-plugin": "^1.1.4",
"postcss": "^8.4.13",
"postcss-loader": "^6.2.1",
"prettier": "^2.6.2",
"rollup": "^2.70.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.31.2",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.24",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
}
},
"dependencies": {
"@airgap/beacon-sdk": "^3.1.3",
"@stakenow/siwt": "^0.0.6",
"@taquito/utils": "^12.0.3",
"axios": "^0.26.1",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"lodash.camelcase": "^4.3.0",
"ramda": "^0.28.0",
"ts-pattern": "^4.0.6"
}
}