-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 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
{
"name": "react-super-lite",
"version": "1.1.6",
"description": "lite version of react",
"main": "lib/react-super-lite.js",
"module": "src/index.js",
"scripts": {
"clean": "rm -rf ./dist ./lib",
"start": "NODE_ENV=development webpack-dev-server",
"build": "yarn clean & NODE_ENV=build webpack",
"preversion": "git-branch-is master",
"bump": "bump --prompt --commit --tag --push",
"prepublish": "npm run build && git add . && git commit -m \"release\" && npm run bump"
},
"dependencies": {},
"devDependencies": {
"babel": "6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "1.7.0",
"babel-preset-stage-3": "6.24.1",
"compression-webpack-plugin": "^1.1.11",
"git-branch-is": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"version-bump-prompt": "^4.1.0",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"keywords": [
"react",
"2kb",
"react-super-lite"
]
}