-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.52 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.52 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
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
{
"name": "flamsdk",
"version": "2.0.4-beta.0",
"description": "flamSdk for saas",
"author": "bucharitesh",
"license": "MIT",
"module": "dist/FlamSaasSDK.min.esm.js",
"main": "dist/FlamSaasSDK.min.js",
"scripts": {
"dev": "env-cmd -f .env.development yarn build && cd web && yarn dev",
"clean": "rm -rf dist && rm -rf build",
"start": "npm run clean && rollup -c --watch",
"build": "npm run version && npm run clean && rollup -c --prod && cp -rf dist build",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"version": "cd scripts && node version",
"jsdocs": "jsdoc --configure .jsdoc.json --verbose",
"prepare": "husky install"
},
"lint-staged": {
"*.js": "npm run lint"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"babel-plugin-istanbul": "^6.0.0",
"browserstack-local": "^1.4.8",
"chromedriver": "^105.0.0",
"concurrently": "^7.4.0",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"es-check": "^7.0.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-import": "^2.24.2",
"expect.js": "^0.3.1",
"husky": "^8.0.1",
"istanbul": "^0.4.5",
"jsdoc": "^3.6.8",
"jsdoc-to-markdown": "7.1.1",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.2",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"mocha-junit-reporter": "^2.0.2",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"proxyquire": "^2.1.1",
"rollup": "^2.79.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-dev": "^2.0.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-license": "^2.6.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"selenium-webdriver": "^4.4.0",
"sinon": "^14.0.0",
"wait-on": "^6.0.0",
"yargs": "^17.2.1"
},
"overrides": {
"lodash": "^4.17.21"
},
"resolutions": {
"minimist": "^1.2.5",
"set-value": "^2.0.1",
"acorn": "^7.1.1",
"serialize-javascript": "^2.1.1",
"kind-of": "^6.0.3"
},
"dependencies": {
"axios": "^0.27.2",
"react-hot-toast": "^2.3.0"
}
}