forked from casbin/casbin.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
{
"name": "casbin.js",
"version": "0.1.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/casbin/casbin.js.git",
"author": "kingiw <[email protected]>",
"license": "MIT",
"scripts": {
"format": "prettier --write 'src/**/*.ts'",
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx --fix",
"build": "rimraf lib && tsc",
"test": "jest --config jestconfig.json --unhandled-rejections=strict",
"prod": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.3",
"@types/js-cookie": "^2.2.6",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"babel-jest": "^26.6.3",
"casbin": "^5.1.2",
"clean-webpack-plugin": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"express": "^4.17.1",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.6.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"ts-loader": "^8.0.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.0.8"
},
"dependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"axios": "^0.21.1",
"babel-loader": "^8.1.0",
"js-cookie": "^2.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}