-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 3.8 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
120
121
122
123
124
125
{
"name": "codefolio",
"version": "1.0.2",
"description": "Front-end application for Codefolio, connects to Codefolio API.",
"keywords": [
"codefolio",
"application",
"developer",
"react",
"react-router",
"webpack",
"alt",
"css-modules"
],
"homepage": "https://github.com/msmfsd/codefolio#readme",
"bugs": {
"url": "https://github.com/msmfsd/codefolio/issues"
},
"license": "MIT",
"author": "msmfsd",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/msmfsd/codefolio.git"
},
"scripts": {
"start": "npm run dev && node server --colors",
"dev": "NODE_ENV=development webpack --colors",
"build": "NODE_ENV=production webpack --colors --progress",
"lint": "eslint --ext .js --ext .jsx ./test ./src; exit 0",
"mocha": "mocha --compilers js:babel-core/register --require babel-polyfill src/reducers --recursive",
"karma": "NODE_ENV=testing karma start --require babel-polyfill",
"test": "npm run lint && npm run mocha",
"esdoc": "esdoc -c ./esdoc.json && open ./esdoc/index.html"
},
"dependencies": {
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.11.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-runtime": "^6.11.6",
"clean-webpack-plugin": "^0.1.10",
"css-loader": "^0.23.1",
"eslint": "^3.2.2",
"eslint-plugin-react": "^5.2.2",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"highlight.js": "^9.5.0",
"json-loader": "^0.5.4",
"karma": "^1.1.2",
"karma-mocha-reporter": "^2.1.0",
"md5": "^2.1.0",
"mocha": "^2.5.3",
"path": "^0.12.7",
"postcss-advanced-variables": "^1.2.2",
"postcss-cssnext": "^2.7.0",
"postcss-extend": "^1.0.4",
"postcss-loader": "^0.9.1",
"postcss-sorting": "^1.6.1",
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"react-css-modules": "^3.7.9",
"react-dom": "^15.3.0",
"react-dropzone": "^3.5.3",
"react-hot-loader": "^1.3.0",
"react-markdown": "^2.4.2",
"react-redux": "^4.4.5",
"react-router": "^2.6.1",
"react-router-redux": "^4.0.5",
"react-router-scroll": "^0.2.1",
"redux": "^3.5.2",
"redux-devtools": "^3.3.1",
"redux-form": "^5.3.2",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"sinon": "^1.17.5",
"slugger": "^1.0.1",
"string-escape": "^0.3.0",
"striptags": "^2.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-hot-middleware": "^2.12.2",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-3": "^6.11.0",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.9",
"copy-webpack-plugin": "^3.0.1",
"enzyme": "^2.4.1",
"esdoc-es7-plugin": "0.0.3",
"expect": "^1.20.2",
"ignore-styles": "^4.0.0",
"karma": "^1.1.1",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.5.3",
"pre-commit": "^1.1.3",
"react-addons-test-utils": "^15.2.1",
"react-transform-hmr": "^1.0.4",
"sinon": "^1.17.4",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.12.1",
"webpack-hot-server": "^0.4.3"
},
"pre-commit": [
"test"
]
}