-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.55 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
{
"name": "evolution-game",
"version": "1.0.0",
"description": "JS game based on evolutionary algorithms",
"private": true,
"scripts": {
"build": "webpack",
"lint:js": "eslint src",
"start": "webpack serve --open",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxymczech/evolution-game.git"
},
"keywords": [
"three",
"evolution",
"game"
],
"author": "Maksym Shcherban",
"license": "ISC",
"bugs": {
"url": "https://github.com/maxymczech/evolution-game/issues"
},
"homepage": "https://github.com/maxymczech/evolution-game",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.13",
"three": "^0.125.2",
"tinyqueue": "^2.0.3"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.2",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"mini-css-extract-plugin": "^1.3.6",
"sass": "^1.32.7",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"stylelint": "^13.10.0",
"stylelint-scss": "^3.19.0",
"stylelint-webpack-plugin": "^2.1.1",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}