This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.48 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
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "TheForemanDevDeps",
"version": "1.17.0",
"license": "GPL-3.0",
"description": "Foreman isn't really a node module, these are just dependencies needed to build the webpack bundle. 'dependencies' are the asset libraries in use and 'devDependencies' are used for the build process.",
"private": true,
"devDependencies": {
"@storybook/addon-actions": "^3.1.8",
"@storybook/react": "^3.1.8",
"@storybook/storybook-deployer": "^2.0.0",
"babel-cli": "^6.10.1",
"babel-core": "^6.26.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^15.0.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "~6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.9.0",
"compression-webpack-plugin": "~0.3.1",
"css-loader": "^0.23.1",
"dotenv": "^2.0.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-15": "^1.0.0",
"enzyme-to-json": "^3.0.1",
"eslint": "^3.3.1",
"eslint-plugin-react": "^6.1.2",
"expose-loader": "~0.6.0",
"file-loader": "^0.9.0",
"identity-obj-proxy": "^3.0.0",
"jest-cli": "^20.0.0",
"jsdom": "^9.5.0",
"node-sass": "^4.5.0",
"react-addons-test-utils": "^15.3.1",
"react-test-renderer": "^15.5.4",
"redux-mock-store": "^1.2.2",
"sass-loader": "~6.0.6",
"style-loader": "^0.13.1",
"stylelint": "^7.13.0",
"stylelint-config-standard": "^16.0.0",
"url-loader": "^0.5.7",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.5.1"
},
"optionalDependencies": {
"phantomjs-prebuilt": "^2.1.0"
},
"dependencies": {
"brace": "^0.10.0",
"c3": "^0.4.11",
"datatables.net": "~1.10.12",
"datatables.net-bs": "~1.10.12",
"diff": "~3.0.0",
"extract-text-webpack-plugin": "^3.0.0",
"fbjs": "0.8.12",
"ipaddr.js": "~1.2.0",
"jquery": "~2.2.4",
"jquery-flot": "~0.8.3",
"jquery-ujs": "~1.2.0",
"jquery.cookie": "~1.4.1",
"jstz": "~1.0.7",
"lodash": "~4.15.0",
"multiselect": "~0.9.12",
"prop-types": "^15.6.0",
"react": "^15.6.2",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.6.2",
"react-numeric-input": "^2.0.7",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-logger": "^2.8.1",
"redux-thunk": "^2.2.0",
"seamless-immutable": "^7.0.1",
"select2": "~3.5.2-browserify",
"urijs": "^1.18.10",
"uuid": "^3.0.1",
"webpack-stats-plugin": "^0.1.5"
},
"scripts": {
"lint": "./node_modules/.bin/eslint -c .eslintrc webpack/ $(./script/foreman_plugins_eslint.js) || exit 0",
"test": "node node_modules/.bin/jest",
"test:watch": "node node_modules/.bin/jest --watchAll",
"test:current": "node node_modules/.bin/jest --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"jest": {
"automock": true,
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"webpack/**/*.js",
"!webpack/**/bundle*"
],
"coverageReporters": [
"lcov"
],
"unmockedModulePathPatterns": [
"react",
"node_modules/"
],
"moduleNameMapper": {
"^.+\\.(png|gif|css|scss)$": "identity-obj-proxy"
},
"globals": {
"__testing__": true
},
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleDirectories": [
"node_modules",
"webpack"
]
}
}