forked from MaxRobinsonTheGreat/LifeEngine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.1 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
{
"name": "evolution-simulator-v2",
"version": "1.0.0",
"description": "Version 2 of the evolution simulator",
"private": true,
"scripts": {
"test": "jest --silent=false",
"test-coverage": "jest --collect-coverage",
"build": "webpack --mode=production",
"build-dev": "webpack --mode=development",
"build-watch": "webpack --watch --mode=development",
"serve": "http-server ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaxRobinsonTheGreat/EvolutionSimulatorV2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MaxRobinsonTheGreat/EvolutionSimulatorV2/issues"
},
"homepage": "https://github.com/MaxRobinsonTheGreat/EvolutionSimulatorV2#readme",
"devDependencies": {
"@types/jquery": "^3.5.16",
"http-server": "^14.1.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"jquery": "^3.6.1"
}
}