-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.82 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
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
{
"name": "spf-server",
"version": "1.0.0",
"description": "EXLskills SPFJS Web Front-end",
"main": "index.js",
"dependencies": {
"@types/js-yaml": "^3.12.0",
"axios": "^0.18.0",
"cheerio": "^1.0.0-rc.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"express-request-language": "^1.1.15",
"express-robots-txt": "^0.4.0",
"fs-extra": "^7.0.1",
"gql2ts": "^1.10.1",
"handlebars": "^4.0.12",
"handlebars-helpers": "^0.10.0",
"handlebars-intl": "^1.1.2",
"isbot": "^2.2.1",
"js-yaml": "^3.12.2",
"jsonwebtoken": "^8.3.0",
"moment-timezone": "^0.5.21",
"showdown": "^1.8.6",
"typescript": "^2.9.2",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.9",
"@types/cors": "^2.8.4",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.11.1",
"@types/express-handlebars": "0.0.30",
"@types/handlebars": "^4.0.39",
"@types/jsonwebtoken": "^7.2.8",
"@types/moment-timezone": "^0.5.9",
"@types/showdown": "^1.7.5",
"ts-node": "^7.0.1"
},
"scripts": {
"start": "npm run build && npm run start:production",
"start:production": "node .",
"build": "npm run build:gql && npm run build:ts",
"build:ts": "tsc",
"build:gql": "gql2ts -o ./lib/gql.d.ts schema.graphql",
"test": "echo \"Error: no test specified\" && exit 1",
"validate": "ts-node code_check/validate-hbar-intl.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exlskills/spf-server.git"
},
"keywords": [
"AMP",
"EXLskills",
"SPF",
"SPFJS"
],
"author": "EXL Inc.",
"bugs": {
"url": "https://github.com/exlskills/spf-server/issues"
},
"homepage": "https://github.com/exlskills/spf-server#readme"
}