-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 981 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 981 Bytes
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
{
"name": "userapi",
"version": "1.0.0",
"description": "A User API create for learn GraphQL",
"main": "index.js",
"scripts": {
"build": "node_modules/.bin/tsc",
"dev": "npm run build ; node dist/main/index.js",
"test": "mocha -r ts-node/register src/test/**/*.spec.ts"
},
"author": "raulgf92",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/chai-http": "^3.0.3",
"@types/color": "^2.0.0",
"@types/mocha": "^2.2.46",
"@types/colors": "^1.1.3",
"@types/express": "^4.11.0",
"@types/express-graphql": "0.0.35",
"@types/graphql": "^0.11.7",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"mocha": "^4.1.0",
"ts-node": "^4.1.0",
"typescript": "^2.6.2"
},
"dependencies": {
"@types/graphql-date": "^1.0.2",
"colors": "^1.1.2",
"express": "^4.16.2",
"express-graphql": "^0.6.11",
"graphql": "^0.12.3",
"graphql-date": "^1.0.3",
"lodash": "^4.17.4"
}
}