-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "react-peeps",
"version": "0.1.10",
"description": "React implementation of the hand drawn illustration library called Open Peeps",
"main": "./lib/peeps/index.js",
"types": "./lib/peeps/index.d.ts",
"scripts": {
"dev": "webpack-dev-server --config ./webpack.config.js --inline --hot --port 2000",
"prebuild": "rimraf lib",
"build": "tsc -d",
"prebump": "npm run build && git add .",
"bump": "npm version patch -f -m \"chore: version bumped to %s\"",
"postbump": "git push && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CeamKrier/react-peeps.git"
},
"keywords": [
"react",
"illustration",
"open peeps",
"svg",
"sketch"
],
"author": "Emre Çakır",
"license": "MIT",
"bugs": {
"url": "https://github.com/CeamKrier/react-peeps/issues"
},
"homepage": "https://github.com/CeamKrier/react-peeps#readme",
"dependencies": {},
"devDependencies": {
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"css-loader": "^3.4.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.0",
"style-loader": "^1.1.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}