-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1004 Bytes
/
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
{
"name": "paletta",
"version": "2.0.1",
"description": "HSV Color Palette for Every Programmer",
"scripts": {
"serve": "esw -w ./src/**/*.js & parcel ./src/index.html",
"build": "cp -R ./public ./dist && parcel build ./src/index.html",
"fmt": "prettier --write 'src/**/*.{js, scss}'",
"preinstall": "npx npm-force-resolutions"
},
"author": "Shoya Ishimaru",
"license": "MIT",
"devDependencies": {
"eslint": "^7.16.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-watch": "^7.0.0",
"parcel-bundler": "^1.12.4",
"prettier": "2.2.1",
"sass": "^1.30.0"
},
"dependencies": {
"bootstrap": "^4.5.3",
"jquery": "^3.5.1",
"popper.js": "^1.16.1"
},
"resolutions": {
"node-forge": "0.10.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2
}
}