-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "sketchify",
"version": "0.1.0",
"description": "a js tool turns svg graph into sketchy visualization",
"private": true,
"main": "./src/index.js",
"repository": "[email protected]:gangtao/sketchify.git",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production",
"build-dev": "webpack --mode=development",
"lint": "./node_modules/.bin/eslint ./src/index.js",
"lint-fix": "./node_modules/.bin/eslint --fix ./src/index.js",
"formatter": "node ./node_modules/prettier/bin-prettier.js --write ./src/*.js"
},
"dependencies": {
"jquery": "^3.4.1",
"roughjs": "^3.1.0"
},
"devDependencies": {
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"file-loader": "^4.2.0",
"prettier": "1.19.1",
"style-loader": "^1.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}