This repository was archived by the owner on Oct 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.7 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.7 KB
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
58
59
60
61
62
63
64
{
"name": "sprunk",
"version": "0.1.0",
"description": "A minimalist pixel art editor built using Mithril",
"main": "index.js",
"private": true,
"babel": {
"presets": [
"@babel/preset-env"
]
},
"browserslist": [
"last 2 versions",
"> 1%"
],
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --mode development",
"dev": "cross-env NODE_ENV=development webpack --mode development",
"prod": "cross-env NODE_ENV=production webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jessebraham/sprunk.git"
},
"author": {
"name": "Jesse Braham",
"email": "jesse@beta7.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jessebraham/sprunk/issues"
},
"homepage": "https://github.com/jessebraham/sprunk#readme",
"dependencies": {
"mithril": "^2.0.4",
"mithril-feather-icons": "^0.1.2",
"mousetrap": "^1.6.5",
"tailwindcss": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@fullhuman/postcss-purgecss": "^2.0.6",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.0",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss": "^7.0.26",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"prettier-loader": "^3.3.0",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.3"
}
}