-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "mobtime",
"version": "1.4.0",
"main": "index.js",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrozbarry/mobtime.git"
},
"scripts": {
"dev": "nodemon --ignore public ./index.js",
"start:dev": "docker-compose -f docker-compose.yml -f docker-compose.development.yml up",
"start:prod": "docker-compose -f docker-compose.yml -f docker-compose.production.yml up",
"tailwind": "tailwindcss build -i ./src/web/styles/index.css -o ./public/styles/styles.css -c ./tailwind.config.cjs",
"tailwind:watch": "tailwindcss --watch -i ./src/web/styles/index.css -o ./public/styles/styles.css -c ./tailwind.config.cjs",
"start": "node ./index.js",
"start:cluster": "node ./index.cluster.js",
"deploy": "node ./deploy/index.js",
"test": "ava",
"test:coverage": "nyc ava",
"prepare": "husky install"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^15.0.0",
"express": "^4.17.2",
"ferp": "^2.1.2",
"helmet": "^4.6.0",
"postcss": "^8.4.5",
"redis": "^4.0.1",
"tailwindcss": "^3.1.8",
"ws": "^8.4.0"
},
"devDependencies": {
"ava": "^4.3.3",
"husky": "^7.0.0",
"nyc": "^15.1.0",
"nodemon": "^2.0.15",
"sinon": "^12.0.1"
},
"ava": {
"files": [
"src/**/*.test.js",
"public/**/*.test.js"
],
"concurrency": 8,
"failFast": true,
"failWithoutAssertions": true
},
"private": true
}