-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 2 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
{
"name": "@canner/image-service-config",
"version": "0.4.0",
"description": "Configuration for image services using antd uploader",
"main": "lib/index.js",
"scripts": {
"build:flow": "flow-copy-source -v -i '**/test/**' src lib",
"lint": "./node_modules/.bin/prettier --write ./src/**/*.js && eslint src",
"prepublish": "npm run clean && npm run check:src && npm run build",
"check:src": "npm run lint",
"clean": "rimraf lib dist",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build": "npm run build:commonjs && npm run build:flow",
"test": "cross-env BABEL_ENV=test karma start --single-run",
"test:watch": "cross-env BABEL_ENV=test karma start",
"start": "./node_modules/.bin/webpack-dev-server --config webpack.config.dev.js --mode development",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Canner/image-service-config.git"
},
"author": "canner",
"license": "ISC",
"bugs": {
"url": "https://github.com/Canner/image-service-config/issues"
},
"homepage": "https://github.com/Canner/image-service-config#readme",
"dependencies": {
"axios": "^0.17.1",
"promise-polyfill": "^7.0.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"antd": "^3.2.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-import": "^1.6.5",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.1.3",
"css-loader": "^0.28.10",
"eslint": "^4.18.2",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-react": "^7.7.0",
"firebase": "^4.10.1",
"flow-bin": "^0.66.0",
"flow-copy-source": "^1.3.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"style-loader": "^0.20.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0"
}
}