forked from devaublanc/ifs-test-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.3 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
97
98
99
100
101
102
103
104
105
106
107
{
"version": "2.17.0",
"description": "Player Volt React",
"author": "Benjamin Devaublanc <[email protected]> (http://bdevaublanc.io/)",
"main": "./dist/bundle",
"name": "volt-ui",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "[email protected]:devaublanc/ifs-test-react.git"
},
"keywords": [
"react",
"reactjs"
],
"private": true,
"scripts": {
"commit": "git-cz",
"copy": "rm -rf build/styleguide/ && cp -R styleguide build/ && rm -rf build/coverage/ && cp -R coverage build/",
"build": "webpack && npm run cover && npm run styleguide-build && npm run copy",
"deploy": "webpack",
"start": "webpack-dev-server",
"server": "json-server --port 5000 db.json",
"test": "NODE_PATH=./src mocha src/config/test/.setup.js src/**/__tests__/*.test.js",
"watch:test": "NODE_PATH=./src mocha src/config/test/.setup.js src/**/__tests__/*.test.js --watch",
"cover": "nyc --reporter=lcov --reporter=text --reporter=html npm run test",
"prerelease": "./scripts/publish.sh",
"release": "standard-version",
"styleguide-server": "styleguidist server",
"styleguide-build": "styleguidist build",
"lint": "eslint . --ext .js --ext .jsx || true"
},
"license": "MIT",
"dependencies": {
"debug": "2.6.0",
"superagent": "^3.3.2"
},
"devDependencies": {
"autoprefixer": "6.7.0",
"babel-core": "6.22.1",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.10",
"babel-plugin-syntax-trailing-function-commas": "6.22.0",
"babel-plugin-transform-class-properties": "6.22.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.22.0",
"babel-register": "6.22.0",
"chai": "3.5.0",
"commitizen": "^2.9.5",
"css-loader": "0.26.1",
"enzyme": "2.7.1",
"eslint": "3.14.0",
"eslint-loader": "1.6.1",
"eslint-plugin-react": "6.9.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "^0.11.1",
"ghooks": "2.0.0",
"html-webpack-plugin": "2.26.0",
"ignore-styles": "5.0.1",
"jsdom": "9.9.1",
"json-server": "^0.10.1",
"lodash.throttle": "4.0.1",
"mocha": "3.2.0",
"nyc": "10.1.2",
"postcss-calc": "5.3.1",
"postcss-color-rebeccapurple": "2.0.1",
"postcss-custom-media": "5.0.1",
"postcss-custom-properties": "5.0.1",
"postcss-inline-svg": "2.3.0",
"postcss-loader": "1.2.2",
"react": "15.4.2",
"react-addons-test-utils": "15.4.2",
"react-dom": "15.4.2",
"react-router": "^3.0.2",
"react-styleguidist": "4.6.3",
"rimraf": "2.5.4",
"semantic-release": "^6.3.2",
"sinon": "1.17.7",
"standard-version": "^4.0.0",
"style-loader": "0.13.1",
"stylelint": "7.7.1",
"superagent": "3.3.2",
"superagent-bluebird-promise": "4.1.0",
"url-loader": "0.5.7",
"webpack": "^2.2.0-rc.3",
"webpack-dev-server": "^2.2.0",
"webpack-merge": "2.4.0",
"webpack-postcss-tools": "1.1.2"
},
"peerDependencies": {
"react": "15.4.2",
"react-dom": "15.4.2"
},
"config": {
"ghooks": {
"pre-commit": "npm run test"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}