-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.39 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
{
"name": "thoughts-app",
"version": "1.0.0",
"scripts": {
"build:webpack":
"cross-env NODE_ENV=production webpack --config webpack.config.prod.js && cp chrome-app/* dist/$TARGET/",
"build": "TARGET=${TARGET:=master} npm run build:webpack",
"start": "node devServer.js",
"test":
"NODE_ENV=test NODE_PATH=src mocha --require babel-core/register --require test/init src/tests/*.js src/**/tests/*.js src/**/**/tests/*.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"devDependencies": {
"babel-core": "^6.6.5",
"babel-eslint": "6.0.0-beta.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"copy-webpack-plugin": "^3.0.1",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"enzyme": "^2.3.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-mocha": "^2.0.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^5.2.2",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^1.0.1",
"favicons-webpack-plugin": "0.0.6",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"json-loader": "^0.5.4",
"mocha": "^2.5.3",
"prettier": "^1.12.1",
"proxyquire": "^1.7.10",
"react-addons-test-utils": "^15.1.0",
"rimraf": "^2.4.3",
"sinon": "^1.17.4",
"string-replace-loader": "^1.0.2",
"style-loader": "^0.13.1",
"stylelint-config-standard": "^10.0.0",
"svg-react-loader": "^0.3.5",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.9.1"
},
"dependencies": {
"bezier": "^0.1.0",
"classnames": "^2.2.5",
"commonmark": "^0.24.0",
"commonmark-react-renderer": "^4.1.4",
"lodash": "^4.13.1",
"moment": "^2.13.0",
"react": "^15.2.0",
"react-addons-css-transition-group": "^15.2.0",
"react-dom": "^15.2.0",
"react-markdown": "^2.4.2",
"react-redux": "^4.4.5",
"react-router": "^2.0.0",
"react-textarea-autosize": "^4.0.2",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
}
}