-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.76 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "root",
"description": "",
"private": true,
"homepage": "https://github.com/dreamistlabs/dl-libs#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dreamistlabs/dl-libs.git"
},
"author": "Johnny Hu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dreamistlabs/dl-libs/issues"
},
"scripts": {
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags",
"test": "jest --colors --verbose",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"watch": "webpack --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.0.3",
"@storybook/addon-links": "^5.0.3",
"@storybook/addons": "^5.0.3",
"@storybook/react": "^5.0.3",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-next": "^1.2.0",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^5.0.1",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"fibers": "^3.1.1",
"file-exists": "^5.0.1",
"glob": "^7.1.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.5.0",
"lerna": "^3.10.7",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.12.0",
"node-sass-utils": "^1.1.2",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-test-renderer": "^16.8.4",
"sass-jest": "^0.1.7",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.5.4",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.3",
"webpack-delete-after-emit": "^1.0.5"
},
"dependencies": {}
}