-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
67 lines (67 loc) · 2.13 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
{
"name": "studyopenings",
"version": "1.0.0",
"description": "An opening a day takes the blunders away!",
"scripts": {
"clean": "rm -rf build/*",
"compile": "tsc",
"copystatic": "mkdir -p build/client && cp -r src/client/css src/client/img src/client/ogg src/client/*.html src/client/*.ico build/client",
"copyclientlib": "mkdir -p build/client/js && cp -r src/client/js/lib build/client/js",
"fixlint": "tslint --fix 'src/**/*.ts'",
"lint": "tslint 'src/**/*.ts'",
"start": "npm run compile && (npm run webpack & (npm run copystatic && npm run copyclientlib && node build/server/main.js))",
"start-dev": "npm run lint && npm run compile && npm run copystatic && npm run copyclientlib && npm run webpack-dev && node build/server/main.js",
"test": "jest",
"webpack": "npx webpack --mode=production",
"webpack-dev": "npx webpack --mode=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jven/studyopenings.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jven/studyopenings/issues"
},
"homepage": "https://github.com/jven/studyopenings#readme",
"dependencies": {
"@types/auth0-js": "8.11.7",
"@types/cors": "2.8.8",
"@types/crypto-random-string": "1.0.0",
"@types/dotenv": "^6.1.0",
"@types/express": "4.16.0",
"@types/express-jwt": "0.0.41",
"@types/howler": "2.0.5",
"@types/mongodb": "3.5.31",
"@types/node": "14.11.2",
"@types/toastr": "2.1.35",
"auth0-js": "9.8.2",
"body-parser": "1.18.3",
"chessground": "7.9.2",
"cors": "2.8.5",
"crypto-random-string": "1.0.0",
"dotenv": "6.2.0",
"express": "4.15.2",
"express-jwt": "5.3.1",
"express-jwt-authz": "1.0.0",
"howler": "2.2.1",
"http": "0.0.0",
"jwks-rsa": "1.11.0",
"mongodb": "3.1.10",
"typescript": "3.9.7",
"webpack": "4.27.1",
"webpack-cli": "3.1.2"
},
"engines": {
"node": "10.3.0"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"pegjs": "^0.10.0",
"ts-jest": "^23.10.5",
"tslint": "^6.1.3"
}
}