-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.61 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.61 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
{
"name": "another-xss-example",
"main": "index.js",
"version": "0.0.2-0",
"description": "Example app in my lecture: \"XSS - From Theory to Practice\" in Vue.js Norte 10th Edition",
"author": {
"email": "TiagoDanin@outlook.com",
"name": "Tiago Danin",
"url": "https://TiagoDanin.github.io"
},
"license": "MIT",
"keywords": [
"example",
"example-app",
"lecture-material",
"node",
"nuxt",
"vue",
"xss",
"xss-example",
"xss-vulnerability"
],
"scripts": {
"start": "cross-env NODE_ENV=production node server/index.js",
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"test": "xo",
"build": "nuxt build",
"generate": "nuxt generate"
},
"engines": {
"node": ">=11"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/TiagoDanin/Another-XSS-Example.git"
},
"homepage": "https://TiagoDanin.github.io/Another-XSS-Example",
"bugs": {
"url": "https://github.com/TiagoDanin/Another-XSS-Example/issues"
},
"github": {
"name": "Another-XSS-Example",
"owner": "TiagoDanin"
},
"files": [
"LICENSE",
"README.md",
"assets",
"components",
"layouts",
"middleware",
"nuxt.config.js",
"package.json",
"pages",
"plugins",
"server",
"static",
"store"
],
"dependencies": {
"@nuxtjs/axios": "^5.13.1",
"body-parser": "^1.19.0",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"jsonfile": "^6.0.1",
"node-sass": "^6.0.0",
"nuxt": "^2.15.4",
"nuxt-buefy": "^0.4.7",
"sass-loader": "^11.0.1"
},
"devDependencies": {
"nodemon": "^2.0.4",
"xo": "^0.33.1"
},
"xo": {
"semicolon": false
}
}