-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.08 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
{
"name": "factorio-status",
"version": "1.1.0",
"description": "mini server status for factorio",
"main": "index.js",
"dependencies": {
"@types/express": "^4.17.9",
"@types/node": "^14.14.9",
"apicache": "^1.5.3",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"pug": "^3.0.0",
"rcon-ts": "^1.2.3",
"typescript": "^4.1.2"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.6.3",
"supertest": "^3.4.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0"
},
"scripts": {
"test": "jest --coverage",
"dev": "ts-node index.ts",
"clean": "rm -Rf dist",
"build": "npm run clean && tsc && npm run copy-assets",
"copy-assets": "cp -R views dist/views",
"start": "node index.js"
},
"author": "lovethebomb",
"license": "ISC",
"jest": {
"transform": {
".ts": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/*"
]
}
}