-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1007 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1007 Bytes
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
{
"name": "game-of-life-generator",
"version": "1.0.0",
"description": "A program to generate a video of a game of life",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon --ignore './outputs' ./src/index.ts",
"build": "tsc",
"start": "npm run build && node --max-old-space-size=8012 dist/index.js",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.35",
"babel-jest": "^26.6.3",
"fluent-ffmpeg": "^2.1.2",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"keywords": [
"game",
"of",
"life",
"conways",
"typescript",
"nodejs",
"javascript",
"ffmpeg"
],
"author": "Remy Villulles",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"pureimage": "^0.2.7"
}
}