-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.35 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "chuck-starterkit",
"version": "0.1.2",
"description": "Chuck Starter Kit",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/d9767192/awesome-connect.git"
},
"author": "Chuck Wu",
"license": "MIT",
"bugs": {
"url": "https://github.com/d9767192/chuck-starterkit/issues"
},
"homepage": "https://github.com/d9767192/chuck-starterkit#readme",
"browserslist": [
"Last 2 versions"
],
"scripts": {
"start": "cross-env NODE_ENV=development node build/scripts/start --sourcemaps --indir app",
"test": "npm run test:lint && npm run test:unit",
"test:unit": "cross-env NODE_ENV=test jest --config build/configs/jest.config.js",
"test:unit:watch": "npm run test:unit -- --watch",
"test:lint": "node build/scripts/eslint",
"test:lint:fix": "npm run test:lint -- --fixlint",
"test:lint:report": "npm run test:lint -- --outputlint",
"test:coverage": "npm run test:unit -- --coverage",
"build": "cross-env NODE_ENV=production node build/scripts/compile --indir app",
"build:lib": "rimraf lib && npm run build:lib:cjs && npm run build:lib:copy && npm run build:lib:umd",
"build:lib:cjs": "node build/scripts/cjsPublisher.js",
"build:lib:copy": "node build/scripts/copyFiles.js",
"build:lib:umd": "node build/scripts/compile --config umd.webpack.config.js --libname counter",
"release": "np --no-publish --any-branch --no-cleanup",
"changelog": "auto-changelog --template keepachangelog"
},
"dependencies": {
"react": "^15.6.2",
"react-dom": "^15.6.2",
"prop-types": "^15.5.10"
},
"devDependencies": {
"auto-changelog": "^1.4.6",
"autoprefixer": "^7.2.5",
"babel-core": "^6.24.1",
"babel-eslint": "^8.1.1",
"babel-loader": "^7.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"cross-env": "^5.0.0",
"css-loader": "^0.28.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.6.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^3.0.2",
"figures": "^2.0.0",
"file-loader": "^1.1.11",
"fs-extra": "^3.0.1",
"html-webpack-plugin": "^2.24.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.1.4",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"np": "^2.18.3",
"optimist": "^0.6.1",
"postcss-loader": "^2.0.10",
"raw-loader": "^0.5.1",
"react-hot-loader": "^3.1.3",
"react-loadable": "^5.3.1",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^15.5.4",
"replace": "^0.3.0",
"rimraf": "^2.6.1",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
}
}