-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
107 lines (107 loc) · 3.77 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
{
"name": "assistant-rgaa",
"version": "1.0.4",
"description": "Assistant RGAA",
"main": "js/index.js",
"scripts": {
"start": "npm run icons && webpack --watch --config webpack.config.dev.js",
"serve": "webpack-dev-server --config webpack.config.dev.js",
"icons": "touch ./dist/icons.svg && spritesh --input ./icons --output ./dist/icons.svg",
"build": "npm run clean && npm run icons && webpack --config webpack.config.production.js",
"build-extension": "npm run build && web-ext build --artifacts-dir artifacts/ --ignore-files ./bin ./css ./doc ./fixtures ./src ./test ./karma.conf.js ./package.json ./webpack.config.*",
"sign-extension": "npm run build && web-ext sign --artifacts-dir artifacts/ --ignore-files ./bin ./css ./doc ./fixtures ./src ./test ./karma.conf.js ./package.json ./webpack.config.*",
"clean": "rm -f ./dist/*",
"test": "karma start"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.22.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-lodash": "^3.2.8",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-react-constant-elements": "^6.8.0",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.5.0",
"browser-sync": "^2.12.8",
"browser-sync-webpack-plugin": "^1.0.1",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"cheerio": "^0.20.0",
"commander": "^2.9.0",
"css-loader": "^0.23.1",
"enzyme": "^2.3.0",
"eslint": "^3.15.0",
"eslint-config-vtech": "^1.1.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^1.0.1",
"imports-loader": "^0.6.5",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.3",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"node-sass": "^3.7.0",
"papaparse": "^4.1.4",
"postcss-loader": "^0.9.1",
"react-addons-test-utils": "^15.0.2",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"request": "^2.74.0",
"sass-loader": "^3.2.0",
"spritesh": "^1.2.0",
"style-loader": "^0.13.1",
"stylelint": "^5.4.0",
"stylelint-config-vtech": "^0.2.0",
"stylelint-webpack-plugin": "^0.2.0",
"watch": "^0.18.0",
"web-ext": "^1.10.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"webpack-visualizer-plugin": "^0.1.5"
},
"dependencies": {
"babel-polyfill": "^6.8.0",
"classnames": "^2.2.5",
"color": "^1.0.3",
"fastmatter": "^1.1.1",
"history": "^2.1.1",
"hoist-non-react-statics": "^1.2.0",
"jquery": "^3.1.0",
"lodash": "^4.12.0",
"marked": "^0.3.6",
"react": "^15.0.2",
"react-addons-update": "^15.0.2",
"react-aria-menubutton": "^4.3.0",
"react-dom": "^15.0.2",
"react-draggable": "^2.2.0",
"react-helmet": "^3.1.0",
"react-intl": "^2.1.2",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"recompose": "^0.20.2",
"redux": "^3.5.2",
"redux-persist": "^3.2.2",
"redux-saga": "^0.10.4",
"render-if": "^0.1.1",
"susy": "^2.2.12",
"typi": "^2.2.1",
"whatwg-fetch": "^1.0.0"
}
}