-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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": "solvenius",
"version": "4.13.0",
"description": "Logic game in modern Elm",
"private": true,
"scripts": {
"clean": "rimraf dist elm-stuff/generated-code",
"clean:all": "yarn clean && rimraf node_modules elm-stuff",
"test": "elm-test",
"start": "webpack serve --open --config webpack.dev.js",
"build": "yarn test && webpack --config webpack.prod.js",
"start:dist": "http-server dist -o /solvenius/ -a 0.0.0.0"
},
"author": {
"name": "Gianluca Costa",
"url": "https://gianlucacosta.info/",
"email": "gianluca@gianlucacosta.info"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/giancosta86/solvenius"
},
"homepage": "https://gianlucacosta.info/solvenius",
"bugs": {
"url": "https://github.com/giancosta86/solvenius/issues"
},
"devDependencies": {
"@types/semver": "^7.3.8",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.1.0",
"elm": "0.19.1-5",
"elm-format": "^0.8.5",
"elm-test": "^0.19.1-revision7",
"elm-webpack-loader": "^8.0.0",
"favicons": "^7.1.4",
"favicons-webpack-plugin": "^6.0.1",
"html-webpack-plugin": "^5.3.2",
"http-server": "^0.12.3",
"prettier": "^2.3.2",
"rimraf": "^5.0.5",
"sass": "^1.35.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.1.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.76.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0",
"workbox-webpack-plugin": "^6.1.5"
},
"dependencies": {
"semver": "^7.5.2"
}
}