-
Notifications
You must be signed in to change notification settings - Fork 503
/
package.json
111 lines (111 loc) · 2.97 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "octopus-library",
"version": "2.0.0",
"description": "The site that powers library.octopus.com",
"main": "server/server.js",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"dependencies": {
"@babel/core": "^7.24.4",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@babel/register": "^7.23.7",
"compression": "^1.6.1",
"eslint-config-prettier": "^4.3.0",
"events": "^1.1.0",
"express": "^4.13.4",
"font-awesome": "^4.6.1",
"frameguard": "^3.0.0",
"history": "^2.1.0",
"isomorphic-dompurify": "^0.17.0",
"marked": "^4.0.10",
"moment": "^2.13.0",
"node-uuid": "^1.4.7",
"normalize.css": "^4.1.1",
"octopus-library": "file:",
"prettier": "^2.6.2",
"prop-types": "^15.6.0",
"pug": "^3.0.2",
"react": "^15.0.1",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^15.0.1",
"react-router": "^2.3.0",
"react-syntax-highlighter": "^15.4.5",
"underscore": "^1.12.1"
},
"devDependencies": {
"babelify": "^10.0.0",
"browser-sync": "^2.27.7",
"browserify": "^14.5.0",
"cssnano": "^5.0.5",
"del": "^3.0.0",
"envify": "^4.1.0",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.4.0",
"event-stream": "3.3.4",
"fancy-log": "^1.3.3",
"glob": "^7.0.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-debug": "^4.0.0",
"gulp-eslint": "^4.0.0",
"gulp-expect-file": "^1.0.1",
"gulp-if": "^2.0.2",
"gulp-inject": "^5.0.2",
"gulp-insert": "^0.5.0",
"gulp-jasmine": "^4.0.0",
"gulp-jsonlint": "^1.3.0",
"gulp-live-server": "0.0.31",
"gulp-load-plugins": "^1.6.0",
"gulp-postcss": "^9.0.1",
"gulp-pug": "^4.0.1",
"gulp-rename": "^1.4.0",
"gulp-rev": "^9.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify-es": "^2.0.0",
"jasmine-core": "3.99.0",
"jasmine-reporters": "^2.5.0",
"jasmine-terminal-reporter": "^1.0.3",
"postcss": "^8.4.5",
"reactify": "^1.1.1",
"sass": "^1.56.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"yargs": "^16.0.3"
},
"scripts": {
"setup": "npm install -g gulp && npm install",
"dev": "npm run lint:fix && gulp build && cd build && node server.js",
"build": "gulp build",
"watch": "gulp watch",
"start": "gulp watch",
"lint": "eslint './**/*.{js,jsx}'",
"lint:fix": "npm run lint -- --fix"
},
"author": "The Octopus Deploy team and contributors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/OctopusDeploy/Library.git"
},
"bugs": {
"url": "https://github.com/OctopusDeploy/Library/issues",
"email": "[email protected]"
},
"homepage": "https://library.octopus.com",
"keywords": [
"Octopus",
"Deploy",
"Library",
"Community",
"Step",
"Templates"
]
}