-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.76 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
{
"author": "Dmitriy Pechenin",
"name": "elm-conway-life",
"version": "0.1.0",
"description": "Elm Conway's Game of Life implementation",
"main": "index.js",
"scripts": {
"test": "elm-test",
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development webpack serve",
"build": "cross-env NODE_ENV=production webpack",
"prod": "webpack -p",
"analyse": "elm-analyse -s -p 3001 -o"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pecheneg2015/elm-conway-life.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"elm": "^0.19.1-5",
"elm-analyse": "^0.16.5",
"elm-format": "^0.8.5",
"elm-test": "^0.19.1-revision10",
"elm-webpack-loader": "^8.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^7.0.3",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"prettier-plugin-elm": "^0.8.0",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.2.1",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"elm-canvas": "^2.2.4"
},
"prettier": {
"tabWidth": 4
}
}