-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
70 lines (70 loc) · 2.23 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
{
"name": "motocal",
"version": "0.1.0",
"description": "moto-calculator",
"dependencies": {
"@babel/core": "^7.11.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-inline-environment-variables": "0.4.3",
"babel-preset-react": "6.24.1",
"copy-webpack-plugin": "^4.5.1",
"create-react-class": "^15.7.0",
"cross-env": "^6.0.3",
"css-loader": "^3.6.0",
"html-webpack-plugin": "^4.3.0",
"js-base64": "~2.4.5",
"mini-css-extract-plugin": "~0.9.0",
"react": "~16.13.1",
"react-bootstrap": "^0.32.4",
"react-copy-to-clipboard": "^5.0.1",
"react-csv": "^1.0.14",
"react-dom": "~16.6.0",
"react-google-charts": "~1.6.6",
"react-language": "^0.1.4",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-manifest-plugin": "^2.2.0"
},
"engines": {
"node": ">= 8.11"
},
"scripts": {
"start": "webpack-dev-server --watch --inline",
"test": "jest",
"build": "webpack --display-error-details",
"lint": "eslint webpack.config.js src/*",
"lint:fix": "eslint webpack.config.js src/* --fix",
"production-build": "cross-env NODE_ENV=production webpack",
"watch-dev": "webpack --progress --watch",
"production-watch-dev": "cross-env NODE_ENV=production webpack --progress --watch",
"storybook": "start-storybook -p 9009 -s ./ --ci",
"download:arm": "python ./scripts/download_image.py arm",
"download:chara": "python ./scripts/download_image.py chara",
"download:help": "python ./scripts/download_image.py -h"
},
"repository": {
"type": "git",
"url": "ssh://github/MotocalDevelopers/motocal.git"
},
"author": "hoshimi",
"license": "MIT",
"devDependencies": {
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-centered": "^5.0.11",
"@storybook/addon-knobs": "^5.0.11",
"@storybook/addon-viewport": "^5.0.11",
"@storybook/react": "^5.3.19",
"@storybook/theming": "^5.0.11",
"autoprefixer": "9.8.3",
"babelify": "10.0.0",
"browserify": "16.5.2",
"eslint": "^6.8.0",
"jest": "25.5.4",
"prop-types": "^15.6.1",
"watchify": "^3.11.1",
"webpack-dev-server": "^3.11.0",
"worker-loader": "^2.0.0"
}
}