-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.86 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": "hydrock-web-tools",
"version": "1.7.1",
"description": "Web tools for work",
"main": "index.js",
"scripts": {
"start": "parcel ./src/index.html",
"build": "rm -rf ./docs && rm -rf ./dist && parcel build src/index.html --target browser --public-url . --out-dir docs",
"watch": "parcel watch src/index.html --target browser --public-url . --out-dir docs",
"release-patch": "npm version patch -m 'chore(*): patch version'",
"release-minor": "npm version minor -m 'chore(*): minor version'",
"release-major": "npm version major -m 'chore(*): major version'",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'update changelog'",
"deploy": "yarn build && git add --all && git commit -m 'new build' && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hydrock/hydrock-web-tools.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hydrock/hydrock-web-tools/issues"
},
"homepage": "https://github.com/Hydrock/hydrock-web-tools#readme",
"dependencies": {
"@babel/plugin-transform-typescript": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@types/react": "^16.7.2",
"cn-decorator": "^2.1.0",
"js-cookie": "^2.2.1",
"parcel-bundler": "^1.10.3",
"prop-types": "^15.6.2",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"react-intl": "^2.7.2",
"react-loadable": "^5.5.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"sass": "^1.14.3"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"conventional-changelog": "^3.0.5",
"postcss-modules": "^1.4.1",
"typescript": "^3.1.6"
}
}