forked from joelnet/the-terminal-daemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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": "the-terminal-daemon",
"version": "1.0.0",
"description": "The Terminal Daemon",
"author": "Joel Thoms",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production node src/index.js --colors",
"dev": "cross-env NODE_ENV=development nodemon src/index.js",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint ."
},
"dependencies": {
"@paciolan/express-easy-routes": "^1.0.13",
"bcryptjs": "^2.4.3",
"boxen": "^4.1.0",
"chalk": "^2.4.2",
"config": "^3.2.2",
"cross-env": "^6.0.3",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"js-yaml": "^3.13.1",
"lokijs": "^1.5.7",
"mojiscript": "^0.13.9",
"moment": "^2.24.0",
"random-ipv6": "^1.0.2",
"shell-quote": "^1.7.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"nodemon": "^1.19.2",
"prettier": "^1.18.2"
}
}