-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "quicker-picker-upper",
"version": "1.0.0",
"description": "Template for quick nodejs/react development",
"author": "Abir Taheer",
"main": "index.js",
"scripts": {
"test": "npx nyc mocha --require ts-node/register src/**/*.spec.ts",
"start": "node dist/index.js",
"dev": "npx nodemon src/index.ts",
"cleanup": "rimraf dist",
"build": "npm run cleanup && tsc && node dist/migrate",
"prettier": "npx prettier --write ."
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"apollo-server-express": "^3.11.1",
"body-parser": "latest",
"cookie-parser": "^1.4.6",
"dotenv": "latest",
"express": "latest",
"graphql": "^16.6.0",
"graphql-scalars": "^1.20.1",
"morgan": "^1.10.0",
"rimraf": "^3.0.2",
"sequelize": "^6.25.5",
"umzug": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/cookie-parser": "^1.4.3",
"@types/mocha": "^10.0.0",
"@types/morgan": "^1.9.3",
"@types/umzug": "^2.3.3",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"sqlite3": "npm:@vscode/sqlite3@^5.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"prettier": {
"semi": true,
"singleQuote": true,
"printWidth": 80
},
"mocha": {
"recursive": true
}
}