-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "crispy-api",
"version": "0.0.1",
"main": "index.js",
"repository": "git@github.com:WiseEngineering/crispy-api.git",
"author": "WiseEngineering open-source@wise-engineering.com",
"license": "MIT",
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"start": "ts-node src/index.ts",
"migrate": "knex migrate:latest",
"develop": "nodemon --watch 'src/**/*.ts' --ext 'ts' --exec 'yarn start'",
"lint": "eslint src/**/*.ts "
},
"dependencies": {
"apollo-server-express": "2.9.14",
"express": "4.17.1",
"graphql": "14.5.8",
"graphql-import": "0.7.1",
"knex": "0.20.4",
"knex-stringcase": "1.4.1",
"mysql": "2.17.1"
},
"devDependencies": {
"@types/chai": "4.2.7",
"@types/knex": "0.16.1",
"@types/mocha": "5.2.7",
"@types/node": "^13.7.0",
"@typescript-eslint/eslint-plugin": "2.10.0",
"@typescript-eslint/parser": "2.10.0",
"chai": "4.2.0",
"easygraphql-tester": "^5.1.6",
"eslint": "6.7.2",
"mocha": "6.2.2",
"nodemon": "2.0.2",
"ts-node": "7.0.1",
"typescript": "3.2.2"
}
}