-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "whrodley",
"version": "0.0.1",
"description": "Text Messaging App for Classrooms",
"main": "src/index.js",
"engines": {
"node": "^12.0.0",
"npm": ">= 6.0.0"
},
"repository": {
"type": "git",
"url": "[email protected]:erwinsaget/whrodley.git"
},
"author": {
"name": "Erwins Saget",
"email": "[email protected]"
},
"scripts": {
"clean": "rm -rf public/assets.*.{js,map}",
"build:watch": "npm run clean && parcel watch assets/template.html --out-dir public --hmr-port 35451",
"build": "NODE_ENV=production parcel build assets/template.html --out-dir public",
"start": "nodemon src/",
"lint": "eslint .",
"coverage": "nyc npm run test",
"test": "NODE_ENV=test mocha test/index.js --timeout=3000 --exit"
},
"license": "MIT",
"dependencies": {
"argon2-ffi": "^1.1.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"config": "^3.3.1",
"connect-redis": "^4.0.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-hbs": "^2.3.2",
"express-pino-logger": "^4.0.0",
"express-session": "^1.17.1",
"express-validator": "^6.4.0",
"helmet": "^3.22.0",
"http-errors": "^1.7.3",
"knex": "^0.20.14",
"nodemailer": "^6.2.1",
"objection": "^2.1.3",
"pg": "^8.0.2",
"pino": "^6.2.0",
"pino-debug": "^1.3.0",
"pino-pretty": "^4.0.0",
"pusher": "^3.0.1",
"reactstrap": "^8.4.1",
"redis": "^3.0.2",
"twilio": "^3.42.1",
"uuid": "^7.0.3"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/runtime": "^7.9.2",
"@reach/dialog": "^0.10.0",
"@reach/visually-hidden": "^0.10.0",
"axios": "^0.19.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cheerio": "^1.0.0-rc.3",
"clarify": "^2.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"faker": "^4.1.0",
"mocha": "^7.1.1",
"node-mocks-http": "^1.8.1",
"nodemon": "^2.0.2",
"nyc": "^15.0.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-bundle-manifest": "^0.2.0",
"prettier": "^2.0.4",
"pusher-js": "^6.0.0",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"react-textarea-autosize": "^7.1.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.3.0",
"sqlite3": "^4.1.1",
"superstack": "0.0.4",
"trace": "^3.1.1"
},
"nodemonConfig": {
"delay": "1500",
"ext": "hbs, js, json",
"ignore": [
"test/*",
"database/*"
],
"watch": [
"src/",
"views/",
"public/"
]
},
"prettier": {
"singleQuote": true
}
}