-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.58 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
{
"contributors": [
{
"name": "Rina Bane",
"email": "[email protected]",
"url": "https://sourcetoad.com/"
},
{
"name": "David J Eddy",
"email": "[email protected]",
"url": "https://sourcetoad.com/"
}
],
"dependencies": {
"admin-lte": "2.3.11",
"bootstrap-datepicker": "1.6.4",
"chart.js": "2.4.0",
"jquery": "3.1.1",
"jvectormap-next": "3.0.0",
"prop-types": "15.5.10",
"react": "15.5.0",
"react-dom": "15.4.2"
},
"description": "An AdminLTE Template made to use for React and ES2015-and-so-on",
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.21.0",
"babel-jest": "20.0.3",
"babel-loader": "6.2.10",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"css-loader": "0.26.1",
"enzyme": "2.8.2",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.0.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-react": "6.9.0",
"extract-text-webpack-plugin": "2.0.0",
"file-loader": "0.10.0",
"http-server": "0.9.0",
"jest-cli": "20.0.3",
"node-sass": "4.5.0",
"react-addons-test-utils": "15.5.1",
"react-test-renderer": "15.5.4",
"sass-loader": "5.0.0",
"style-loader": "0.13.1",
"uglify-js": "2.8.27",
"uglifycss": "0.0.25",
"url-loader": "0.5.7",
"webpack": "^2.0.0"
},
"jest": {
"testRegex": "./src/tests/.*.js$",
"rootDir": "."
},
"license": "MIT",
"main": "./lib/es6-react-admin-lte.js",
"name": "es6-react-admin-lte",
"scripts": {
"build": "webpack --progress -ddd --display-error-details --optimize-minimize --define process.env.NODE_ENV=\"'production'\" && npm run uglyjs && npm run uglycss && npm run move-example-imgs",
"build-dev": "webpack --progress -ddd --display-error-details && npm run move-example-imgs",
"build-lib": "babel ./src/js --out-dir ./lib --source-maps --presets es2015,react --plugins babel-plugin-add-module-exports && npm run lib-jsx-relabel",
"lib-jsx-relabel": "find ./lib -type f -name \"*.js\" -exec sed -i '' 's/\\.jsx/\\.js/g' {} +",
"move-example-imgs": "cp -rf ./src/examples/img/ ./dist/examples/img",
"prepublish": "npm run build-lib && npm run build",
"start": "http-server",
"test": "jest --coverage",
"uglycss": "uglifycss ./dist/css/es6-react-admin-lte.css > ./dist/css/es6-react-admin-lte.min.css",
"uglyjs": "uglifyjs ./dist/js/es6-react-admin-lte.js -c -m -o ./dist/js/es6-react-admin-lte.min.js"
},
"version": "2.0.0"
}