-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "curve-visual",
"version": "0.1.0",
"scripts": {
"db-migrate": "sequelize db:migrate",
"start": "NODE_ENV=production nodemon server",
"dev": "NODE_ENV=development nodemon server",
"test": "yarn test.backend",
"test.backend": "NODE_ENV=test mocha --exit",
"test.backend.watch": "NODE_ENV=test mocha --watch",
"test.frontend": "cd react-ui/ && yarn test",
"heroku-postbuild": "cd react-ui/ && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"dependencies": {
"@types/jest": "^29.5.0",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.4",
"cookie-session": "^2.0.0",
"express": "^4.17.1",
"express-validator": "^6.15.0",
"morgan": "^1.9.1",
"nodemon": "^2.0.22",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pg": "^8.10.0",
"pg-hstore": "^2.3.2",
"sequelize": "^6.30.0",
"sequelize-auto-migrations": "^1.0.3",
"sequelize-cli": "^6.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/valentijnnieman/curve.git"
},
"keywords": [
"web audio",
"react",
"visual",
"curve"
],
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^10.2.0",
"node-mocks-http": "^1.8.0",
"proxyquire": "^2.1.3",
"sequelize-mock": "^0.10.2",
"sinon": "^15.0.3"
}
}