-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
52
53
54
55
56
57
58
{
"name": "@uswitch/ustyle-react",
"version": "0.0.108",
"description": "uStyle React Components",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist; babel src --out-dir dist",
"start": "webpack-dev-server",
"watch": "nodemon -e js --watch src --exec \"npm run build\"",
"lint": "standard \"src/**/*.js\" \"*.js\"",
"lint:fix": "standard --fix \"src/**/*.js\" \"*.js\"",
"storybook": "start-storybook -p 6006",
"bump-version": "npm --no-git-tag-version version patch",
"preversion": "npm run build; npm run lint:fix",
"postversion": "git add dist package*.json"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/uswitch/ustyle-react.git"
},
"author": {
"name": "uSwitch Limited",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": "https://github.com/uswitch/ustyle-react/issues",
"homepage": "https://github.com/uswitch/ustyle-react#readme",
"pre-commit": [
"bump-version"
],
"dependencies": {
"classnames": "^2.2.5",
"object.assign": "^4.0.4",
"prop-types": "^15.3"
},
"peerDependencies": {
"react": ">=15.3"
},
"devDependencies": {
"@storybook/react": "^3.1.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"baconipsum": "^0.1.2",
"nodemon": "^1.18.3",
"pre-commit": "^1.2.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"standard": "^10.0.2",
"ustyle": "^1.15.3",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
}
}