-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "star-wars-server",
"version": "1.0.0",
"description": "Star war server",
"main": "index.js",
"repository": "https://github.com/cosmas28/star-wars-server.git",
"author": "Cosmas Billa",
"license": "MIT",
"scripts": {
"dev": "nodemon ./src/index.ts",
"start": "node ./build/index.js",
"build": "tsc",
"tslint": "tslint --project tsconfig.json",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:write": "yarn prettier:base -- --write \"src/**/*.{ts,tsx}\"",
"test": "jest --watch"
},
"dependencies": {
"apollo-datasource-rest": "^0.13.0",
"apollo-server-express": "^2.24.0",
"cors": "^2.8.5",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"graphql": "^15.5.0"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.23",
"apollo-link": "^1.2.14",
"apollo-server-testing": "^2.24.0",
"babel-jest": "^26.6.3",
"graphql-tag": "^2.12.4",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react": "^5.0.0",
"typescript": "^4.2.4"
}
}