-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 2.34 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
{
"name": "gitlab-chrome-extension",
"version": "0.17.2",
"description": "Manage your gitlab projects and todos",
"main": "src/index.js",
"scripts": {
"start": "NODE_ENV=development webpack --progress --colors --watch",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:coverage": "jest --coverage",
"start:event": "NODE_ENV=development webpack -wc --config webpack.event.config.js",
"build:event": "NODE_ENV=production webpack --config webpack.event.config.js",
"build": "npm run build:event && NODE_ENV=production webpack --progress --colors",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "npm run build && npm run changelog && git add -A",
"postversion": "git push && git push --tags"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"moduleDirectories": [
"node_modules",
"<rootDir>/src"
]
},
"keywords": [],
"author": "Leonardo Luiz <[email protected]>",
"license": "ISC",
"devDependencies": {
"axios": "^0.15.3",
"babel-core": "^6.14.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"classnames": "^2.2.5",
"clipboard": "^1.5.12",
"conventional-changelog-cli": "^1.2.0",
"coveralls": "^2.11.14",
"css-loader": "^0.25.0",
"diacritics": "^1.3.0",
"enzyme": "^2.4.1",
"eslint": "^3.5.0",
"eslint-plugin-react": "^6.2.2",
"exports-loader": "^0.6.3",
"faker": "^4.1.0",
"imports-loader": "^0.6.5",
"jest": "^16.0.1",
"lodash": "^4.17.4",
"normalizr": "^3.2.2",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-test-utils": "^15.3.2",
"react-custom-scrollbars": "^4.0.2",
"react-dnd": "^2.3.0",
"react-dnd-html5-backend": "^2.3.0",
"react-dom": "^15.4.2",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-actions": "^2.0.1",
"redux-logger": "^2.10.1",
"redux-mock-store": "^1.2.1",
"redux-saga": "^0.14.3",
"reselect": "^2.5.4",
"semantic-ui-react": "^0.67.1",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.3.1",
"webpack": "^1.13.2",
"whatwg-fetch": "^1.0.0"
}
}