This repository was archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
113 lines (113 loc) · 4.16 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
{
"name": "zanata-frontend",
"version": "1.0.0",
"description": "Zanata front-end package",
"main": "index.js",
"scripts": {
"js": "webpack",
"build": "npm run build:css && npm run build:icons && npm run build:webpack && npm run build:webpackLegacy",
"build:css": "npm run build:sass && webpack --config webpack.config.js",
"build:dev": "npm run build:icons & npm run build:sass",
"build:sass": "npm run variables && node-sass src/components/Select/index.scss -o src/components/Select --include-path node_modules --importer node_modules/node-sass-json-importer/dist/node-sass-json-importer.js",
"build:icons": "npm run svg && npm run icons",
"build:webpack": "webpack -p --config webpack.prod.config.js --bail --display-error-details",
"build:webpackLegacy": "webpack -p --config webpack.legacy.config.js --bail --display-error-details",
"icons": "node scripts/createIconsComponent && node scripts/generateIconList",
"hot-dev-server": "webpack-dev-server --config webpack.dev.config.js --progress --inline --hot --port 8000",
"start": "npm run build:dev && npm run hot-dev-server",
"styleguide-server": "npm run build:dev && styleguidist server",
"styleguide-build": "npm run build:dev && styleguidist build",
"svg": "svg-sprite -sD src/components/Icons --symbol-dest '' --ss icons.svg --si src/components/Icons/svgs/*.svg",
"test": "echo \"Error: no test specified. Jest tests need to be migrated to tape.\" && exit 1",
"variables": "node scripts/writeVariablesJson"
},
"license": "LGPL",
"devDependencies": {
"atomic-loader": "^0.1.3",
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.0",
"babel-jest": "^6.0.1",
"babel-loader": "^6.2.1",
"babel-plugin-lodash": "2.1.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.3.13",
"css-loader": "^0.16.0",
"eslint": "^2.4.0",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-react": "^2.3.0",
"eslint-config-zanata": "^2.0.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-react": "^4.2.3",
"eslint-plugin-standard": "^1.3.2",
"extract-text-webpack-plugin": "^0.9.1",
"jest-cli": "github:jamedranoa/jest",
"jsonfile": "^2.2.3",
"node-sass": "^3.4.2",
"node-sass-json-importer": "^1.0.6",
"react-addons-test-utils": "^0.14.7",
"react-styleguidist": "^2.0.1",
"react-transform-hmr": "^1.0.4",
"style-loader": "^0.12.3",
"svg-sprite": "^1.2.19",
"webpack": "^1.12.8",
"webpack-dev-middleware": "^1.5.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"babel-polyfill": "^6.5.0",
"chart.js": "git://github.com/huangp/Chart.js.git",
"classnames": "^2.1.3",
"defined": "^1.0.0",
"dom-helpers": "^2.4.0",
"fixed-data-table": "^0.5.0",
"flat": "^1.6.0",
"history": "^2.0.0",
"immutable": "^3.7.6",
"isomorphic-fetch": "^2.2.1",
"keymirror": "^0.1.1",
"lodash": "4.13.1",
"moment": "^2.12.0",
"moment-range": "^2.2.0",
"normalizr": "^2.0.0",
"react": "^0.14.7",
"react-a11y": "^0.2.8",
"react-addons-pure-render-mixin": "^0.14.6",
"react-chartjs": "^0.4.0",
"react-dom": "^0.14.6",
"react-helmet": "^2.3.1",
"react-list": "^0.7.13",
"react-overlays": "^0.6.0",
"react-prop-types": "^0.3.0",
"react-redux": "^4.4.0",
"react-router": "^2.0.0-rc6",
"react-router-redux": "^3.0.0",
"react-select": "^1.0.0-beta10",
"react-textarea-autosize": "^3.3.0",
"redux": "3.3.1",
"redux-actions": "^0.9.1",
"redux-api-middleware": "^1.0.0-beta3",
"redux-logger": "^2.5.0",
"redux-thunk": "^1.0.3",
"warning": "^2.1.0",
"webfontloader": "^1.6.21"
},
"jest": {
"scriptPreprocessor": "./node_modules/babel-jest",
"unmockedModulePathPatterns": [
"./node_modules/react",
"./node_modules/react-dom",
"./node_modules/react-addons-test-utils",
"./node_modules/fbjs",
"./node_modules/lodash",
"./src"
],
"moduleFileExtensions": [
"js",
"jsx"
]
}
}