-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "ccinventory",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run prod",
"dev": "cross-env NODE_ENV=dev nodemon index.js",
"prod": "cross-env NODE_ENV=prod node index.js",
"test": "cross-env nyc --reporter=lcov --reporter=text mocha --recursive --exit 'tests'",
"test:clean": "npm run bootstrap && npm run test",
"bootstrap": "cross-env NODE_ENV=dev sh ./scripts/bootstrap.sh"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"cross-env": "^5.2.0",
"csv": "^5.3.0",
"csv-parse": "^4.8.2",
"dotenv": "^6.1.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-fileupload": "^1.1.6-alpha.6",
"mocha": "^8.1.1",
"morgan": "^1.9.1",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"pg": "^7.12.1",
"pg-copy-streams": "^2.2.2",
"pg-hstore": "^2.3.2",
"request": "^2.88.0",
"sequelize": "^5.21.9",
"should": "^13.2.3",
"supertest": "^4.0.2"
},
"optionalDependencies": {
"fsevents": "^1.2.9"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0"
}
}