-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
60 lines (60 loc) · 1.75 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
{
"name": "keyboard-shortcuts-practice",
"version": "1.0.0",
"description": "[Techtonica](https://techtonica.org) is a nonprofit that provides free tech training with stipends and job placement to women and non-binary adults with low incomes.",
"main": "app.js",
"scripts": {
"start": "nf start",
"start:prod": "cross-env NODE_ENV=production node app.js",
"dev": "cross-env NODE_ENV=development nodemon",
"test": "npx jasmine",
"build": "webpack",
"webpack:dev": "cross-env NODE_ENV=development webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Techtonica/keyboard-shortcuts-practice.git"
},
"author": "Techtonica",
"license": "ISC",
"bugs": {
"url": "https://github.com/Techtonica/keyboard-shortcuts-practice/issues"
},
"homepage": "https://github.com/Techtonica/keyboard-shortcuts-practice#readme",
"dependencies": {
"dotenv": "^8.1.0",
"ecstatic": "^4.1.4",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-openid-connect": "^2.0.0",
"http-server": "^0.12.3",
"keymaster": "^1.6.2",
"morgan": "^1.9.1",
"mysql": "^2.17.1",
"path": "^0.12.7",
"pg": "^8.3.3",
"pg-hstore": "^2.3.3",
"request": "^2.88.0",
"sequelize": "^6.3.5",
"serve-favicon": "^2.5.0",
"sqlite3": "^5.0.0"
},
"devDependencies": {
"connect-session-sequelize": "^7.0.3",
"cross-env": "^7.0.2",
"express-session": "^1.17.1",
"foreman": "^3.0.1",
"jasmine": "^3.6.2",
"nodemon": "^2.0.1",
"supertest": "^5.0.0",
"supertest-session": "^4.1.0",
"webpack": "^5.12.1",
"webpack-cli": "^4.3.1"
},
"nodemonConfig": {
"execMap": {
"watch": "js,ejs,json",
"js": "node --unhandled-rejections=strict"
}
}
}