-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "pinto",
"version": "0.3.2",
"description": "Create, view and edit Vim color themes",
"main": "src/index.html",
"scripts": {
"start": "vite serve --config vite.config.js",
"build": "vite build --config vite.config.js",
"serve": "vite preview --config vite.config.js",
"deploy": "vite build --config vite.config.js && netlify deploy --prod --dir dist",
"lint": "eslint src",
"lint-watch": "nodemon --exec npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alajmo/pinto.git"
},
"contributors": [
{
"name": "Samir Alajmovic",
"email": "[email protected]",
"url": "https://alajmovic.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alajmo/pinto/issues"
},
"homepage": "https://github.com/alajmo/pinto#readme",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
"file-saver": "^2.0.2",
"idb": "^5.0.7",
"lighterhtml": "^4.2.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"cssnano": "^5.0.7",
"eslint": "^7.25.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.23.4",
"nodemon": "^2.0.7",
"postcss-cli": "^9.0.2",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-modules": "^1.5.0",
"postcss-preset-env": "^6.7.0",
"vite": "^2.4.4"
}
}