-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.48 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
{
"name": "simple-auth",
"version": "1.0.0",
"description": "Simple auth frontend components",
"main": "index.js",
"scripts": {
"build": "webpack -p",
"dev": "webpack --watch -d",
"lint": "eslint --ext js,vue vue/ && eslint tests/",
"clean": "rm -rf node_modules/ dist/",
"integration-test": "mocha --recursive tests/ --slow 500 --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/zix99/simple-auth.git"
},
"author": "Chris LaPointe",
"license": "ISC",
"homepage": "https://bitbucket.org/zix99/simple-auth#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/vue-fontawesome": "^2.0.0",
"axios": "^0.21.4",
"bulma": "^0.9.2",
"dayjs": "^1.8.30",
"validator": "^13.7.0",
"vue": "^2.6.11",
"vue-router": "^3.3.4",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"css-loader": "^3.6.0",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-vue": "^6.2.2",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.2.1",
"speakeasy": "^2.0.0",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}