-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.92 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.92 KB
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
{
"name": "store-manager",
"version": "1.0.0",
"description": "Store Manager is a web application that helps store owners manage sales and product inventory records.",
"main": "app.js",
"engines": {
"node": "8.12.0"
},
"scripts": {
"clean": "rm -rf build && mkdir build",
"build-babel": "babel -d ./build ./api -s",
"build": "npm run clean && npm run build-babel",
"start": "npm run build && node ./build/app.js",
"migrations": "babel-node api/v1/database/droptables && babel-node api/v1/database/createtables",
"seed": "babel-node api/v1/database/seed",
"pretest": "npm run migrations && npm run seed",
"test": "nyc --reporter=text mocha -c ./test/**/*.js --exit --require babel-core/register",
"devstart": "node_modules/.bin/nodemon api/app.js --exec babel-node --",
"heroku-postbuild": "npm run pretest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheDrizzyWay/Store-Manager.git"
},
"author": "Christopher Iliyas",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheDrizzyWay/Store-Manager/issues"
},
"homepage": "https://github.com/TheDrizzyWay/Store-Manager#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"bcryptjs": "^2.4.3",
"cross-env": "^5.2.0",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.3.0",
"moment": "^2.22.2",
"pg": "^7.6.0",
"uuid": "^3.3.2",
"validator": "^10.9.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-istanbul": "^0.12.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.1.0"
}
}