-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "package-template",
"version": "1.0.0",
"description": "package description",
"main": "dist/index.js",
"scripts": {
"start": "cd example && webpack-dev-server --inline --content-base dist --history-api-fallback --port 8083 --mode development",
"build": "babel -d dist/ src/",
"build:watch": "babel -w -d dist/ src/",
"build:docs": "rm -rf docs/*.js && rm -rf docs/*.css && cd example && NODE_ENV=production webpack --mode production",
"test": "mocha --require jsdom-global/register --require babel-core/register --require babel-polyfill --require ./test/test-helper.js --require ./test/null-compiler.js",
"test:watch": "npm run test -- --watch",
"test:report": "nyc --reporter=html npm test",
"cm": "git-cz",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branch": "master",
"extends": "c2-semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": "eslint",
"test/**/*.js": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ClearC2/package-template.git"
},
"keywords": [
"react",
"package",
"template"
],
"author": "Clear C2, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/ClearC2/package-template/issues"
},
"homepage": "https://github.com/ClearC2/package-template#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"c2-semantic-release": "ClearC2/c2-semantic-release#^1.0.0",
"chai": "^4.1.2",
"chai-immutable": "^1.6.0",
"clean-webpack-plugin": "^0.1.18",
"css-loader": "^0.28.10",
"dirty-chai": "^2.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-config-c2-react": "^1.3.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.0.4",
"immutable": "^3.8.2",
"jsdom": "^11.11.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.0.5",
"node-sass": "^4.7.2",
"nyc": "^11.6.0",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.2",
"url-loader": "^0.6.2",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
}
}