-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
{
"name": "revolve",
"version": "0.0.1",
"description": "A portable and modular e-commerce subscription platform",
"dependencies": {
"dotenv": "^8.0.0",
"pg": "^7.11.0",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.18",
"winston": "^3.2.1",
"xstate": "^4.6.1"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.7",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-watch": "^5.1.2",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
},
"engines": {
"node": ">=10.16.0"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"db:migrate": "node_modules/.bin/typeorm migration:run",
"db:migration:generate": "node_modules/.bin/typeorm migration:generate -n",
"db:postgres:create": "createdb revolve_development",
"db:postgres:create:test": "createdb revolve_test",
"db:postgres:drop": "dropdb revolve_development",
"db:postgres:reset": "npm run db:postgres:drop && npm run db:postgres:create",
"fix": "eslint . --ext .js,.ts --fix",
"lint": "tsc --noEmit && eslint . --ext .js,.ts",
"start": "node dist/index.js",
"test": "jest",
"watch": "nodemon dist/index.js",
"watch-eslint": "node_modules/.bin/esw . --ext .js,.ts --color -w --watch-ignore dist",
"watch-test": "jest --watch",
"watch-ts": "npm run clean && tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhippenmeyer/revolve.git"
},
"keywords": [
"e-commerce",
"subscription",
"billing",
"recurring"
],
"author": "Nicholas Hippenmeyer",
"license": "ISC",
"bugs": {
"url": "https://github.com/nhippenmeyer/revolve/issues"
},
"homepage": "https://github.com/nhippenmeyer/revolve#readme"
}