-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "examples",
"version": "1.0.0",
"displayName": "Neo's examples",
"description": "I am a full-stack developer, I think one of the best ways to learn technology is by doing examples. So I collected all the examples I did in one place and share them with you, I hope this can help you also.",
"main": "server/app.js",
"scripts": {
"start": "node ./bin/www",
"dev": "npm run build-apps && npm start",
"build-apps": "cd ./scripts && sh build.sh",
"build-docker-image": "sh ./scripts/build-docker-image.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neoskx/examples.git"
},
"keywords": [
"nodejs",
"javascript",
"html",
"react",
"css",
"dustjs",
"knockout"
],
"author": "Neo Xu",
"license": "ISC",
"bugs": {
"url": "https://github.com/neoskx/examples/issues"
},
"homepage": "https://github.com/neoskx/examples#readme",
"dependencies": {
"@popperjs/core": "2.9.2",
"bootstrap": "5.0.0",
"jquery": "3.6.0",
"monaco-editor": "0.26.1",
"express": "4.17.1",
"cookie-parser": "1.4.5",
"debug": "2.6.9",
"http-errors": "1.6.3",
"ejs": "3.1.6",
"morgan": "1.9.1",
"fs-extra": "10.0.0"
},
"optionalDependencies": {
"fsevents": "^2.1.2"
},
"devDependencies": {
"cssnano": "^5.0.7"
}
}