-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
51
52
53
54
{
"name": "documentation",
"version": "0.1.0",
"description": "Documentation service for on-site documentation and tutorials for shipyards features.",
"main": "server/index.js",
"scripts": {
"start:dev": "concurrently \"brunch watch\" \"nodemon -L server/index.js\"",
"build": "npm run docs && brunch build",
"start": "node server/index.js",
"docs": "jsdoc -r ./server/*.js -d ./docs",
"clean": "rm -r ./public ./docs",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShipyardSuite/documentation.git"
},
"keywords": [],
"author": "Shipyard Suite <shipyardsuite@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ShipyardSuite/documentation/issues"
},
"homepage": "https://github.com/ShipyardSuite/documentation#readme",
"dependencies": {
"cors": "2.8.5",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-markdown": "4.3.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-syntax-highlighter": "12.2.1",
"redis": "3.0.2",
"semantic-ui-react": "^0.88.2",
"winston": "3.2.1",
"winston-redis": "3.1.0"
},
"devDependencies": {
"babel-preset-react": "~6.22",
"babel-preset-latest": "^6",
"auto-reload-brunch": "^2",
"clean-css-brunch": "^2",
"uglify-js-brunch": "^2",
"concurrently": "^5.1.0",
"babel-brunch": "~6.0",
"brunch": "^2",
"chai": "^4.2.0",
"jsdoc": "^3.6.3",
"mocha": "^7.1.1",
"nodemon": "^2.0.2"
}
}