-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.1 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
{
"name": "react-comments",
"version": "1.0.0",
"description": "Comment thread built with React.",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "cross-env NODE_ENV=production webpack --stats --config webpack/config.prod.js",
"build": "npm run clean && npm run build:webpack",
"dev": "cross-env NODE_ENV=development nodemon --exec node index.js",
"test": "cross-env NODE_ENV=test mocha ./src/test/ --recursive --compilers js:babel-register --require src/test/setup.js",
"test:watch": "npm test -- --watch",
"start": "cross-env NODE_ENV=production node index.js"
},
"main": "index.js",
"author": "Andrew Coelho <[email protected]> (http://andrewcoelho.com)",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"enzyme": "^2.2.0",
"eslint": "^2.6.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3",
"expect": "^1.19.0",
"html-webpack-plugin": "^2.16.1",
"jsdom": "^8.5.0",
"json-loader": "^0.5.4",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"mocha": "^2.4.5",
"nodemon": "^1.9.1",
"postcss-loader": "^0.9.1",
"react-addons-test-utils": "^15.0.2",
"redbox-react": "^1.2.2",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"classnames": "^2.2.5",
"express": "^4.13.4",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-timeago": "^3.0.0"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"prefer-template": 0,
"comma-dangle": 0
}
}
}