-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "bbb-cms-api",
"version": "1.2.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "mkdir -p dist && cp -R node_modules *.js templates dist/",
"webdev": "node -r esm -r ./webdev/env.js --inspect ./webdev/server.js",
"start": "node -r esm server.js",
"startdbg": "nodemon -r esm --inspect server.js",
"test": "mocha -r esm --exit --timeout=5000 './test/main.js'",
"testdbg": "mocha -r esm --inspect './test/main.js'",
"buildvendor": "node -r esm vendor.js"
},
"author": "Vaclav Klecanda <[email protected]> (http://vxk.cz)",
"license": "ISC",
"dependencies": {
"@picocss/pico": "^1.4.2",
"axios": "^0.21.1",
"bootstrap": "^4.6.0",
"bulma": "^0.9.2",
"esm": "^3.2.25",
"express": "^4.17.1",
"modularni-urad-utils": "1.5.0",
"morgan": "^1.10.0",
"rmfr": "^2.0.0",
"sass": "^1.32.6",
"temp": "^0.9.4",
"underscore": "^1.12.0",
"yaml": "^1.10.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.2.0",
"deepcopy": "^2.0.0",
"expect": "^1.20.2",
"jsdom": "^9.8.0",
"mocha": "^8.2.0"
}
}