-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
60 lines (60 loc) · 2.12 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
{
"name": "accessible-colors",
"version": "1.0.0",
"description": "Automatically find the closest accessible color combination",
"repository": {
"type": "git",
"url": "https://github.com/moroshko/accessible-colors.git"
},
"author": "Misha Moroshko <[email protected]>",
"scripts": {
"start": "rm -rf dist && mkdir -p dist && npm run copy-static-files && node server",
"lint": "eslint src server.js webpack.dev.config.js webpack.prod.config.js",
"test": "mocha --compilers js:babel-core/register --recursive src/**/*.test.js",
"test-watch": "mocha --compilers js:babel-core/register --recursive src/**/*.test.js --watch --reporter min",
"copy-static-files": "cp src/index.html src/favicon.png src/icons.css dist/ && cp -r src/fonts dist/",
"dist": "rm -rf dist/ && mkdir dist && npm run copy-static-files && NODE_ENV=production webpack --config webpack.prod.config.js",
"prebuild": "npm run lint && npm test",
"build": "npm run dist"
},
"dependencies": {
"add-commas": "0.0.4",
"es6-promise": "^4.0.5",
"isomorphic-fetch": "^2.2.1",
"jsonp": "^0.2.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.9",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"eslint-plugin-react": "^6.8.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "^3.2.0",
"node-libs-browser": "^2.0.0",
"opn": "^4.0.2",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.3",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
},
"license": "MIT"
}