-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.96 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "node-starter",
"version": "0.1.0",
"description": "A starter project for a Node web app.",
"repository": {
"type": "git",
"url": "https://github.com/textileio/node-starter"
},
"author": "Textile",
"license": "MIT",
"scripts": {
"start": "npm run serve",
"build": "npm run build-sass && npm run build-ts && npm run lint && npm run copy-static-assets",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"build-sass": "node-sass src/public/css/main.scss dist/public/css/main.css",
"watch-sass": "node-sass -w src/public/css/main.scss dist/public/css/main.css",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"dependencies": {
"@textile/hub": "^6.2.0",
"@textile/powergate-client": "4.1.0",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-twitter": "^1.0.4",
"pug": "^3.0.0",
"sqlite": "^4.0.14",
"sqlite3": "^5.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/concurrently": "^5.2.1",
"@types/errorhandler": "^1.5.0",
"@types/eslint": "^7.2.3",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.0",
"@types/jest": "^26.0.14",
"@types/jquery": "^3.5.1",
"@types/node": "^14.11.2",
"@types/node-sass": "^4.11.1",
"@types/passport": "^1.0.4",
"@types/passport-github2": "^1.2.4",
"@types/passport-google-oauth20": "^2.0.4",
"@types/passport-twitter": "^1.0.36",
"@types/pug": "^2.0.4",
"@types/shelljs": "^0.8.8",
"@types/supertest": "^2.0.10",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"chai": "^4.2.0",
"concurrently": "^5.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"prettier-plugin-organize-imports": "^1.1.1",
"shelljs": "^0.8.4",
"supertest": "^5.0.0",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}