-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "memory-quiz",
"version": "2.0.0",
"description": "Generic memory quiz server",
"author": "PoissonPoisson",
"license": "MIT",
"keywords": [
"node-js",
"typescript",
"http-server",
"less",
"memory-quiz"
],
"main": "src/main.ts",
"scripts": {
"start": "node build/main.js",
"start:dev": "nodemon",
"build": "npm run clear && npm run build-ts && npm run copy-views",
"build-ts": "tsc",
"build-css": "less-watch-compiler",
"clear": "rm -rf build/*",
"copy-views": "cp -r src/**/*.html build/**/*.html",
"test": "mocha -r ts-node/register tests/**/*.spec.ts"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/uuidv4": "^5.0.0",
"@types/winston": "^2.4.4",
"chai": "^4.2.0",
"less-watch-compiler": "^1.14.6",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"dotenv": "^8.2.0",
"uuidv4": "^6.2.6",
"winston": "^3.3.3"
}
}