This repository was archived by the owner on Dec 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.24 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.24 KB
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": "Simple application showing redux, localStorage, react-router concepts",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"compile": "npm run clean && NODE_ENV=production webpack -p --progress --colors",
"start": "npm run dev",
"dev": "node --harmony bin/webpack-dev-server",
"dev:nw": "npm run dev -- --nw",
"dev:no-debug": "npm run dev -- --no_debug",
"test": "mocha --compilers js:babel/register --recursive",
"test:watch": "npm test -- --watch",
"deploy": "npm run test && npm run compile"
},
"author": "Samuel Mansour (http://github.com/s83)",
"license": "MIT",
"dependencies": {
"bootstrap": "^3.3.5",
"history": "^1.9.0",
"immutable": "^3.7.5",
"moment": "^2.10.6",
"react": "^0.14.0-rc1",
"react-bootstrap": "^0.25.100-react-pre.1",
"react-gravatar": "^2.0.1",
"react-redux": "^2.0.0",
"react-router": "1.0.0-rc1",
"redux": "^3.0.0",
"redux-form": "^1.6.7",
"redux-storage": "^1.2.3",
"validator": "^4.0.6",
"yargs": "^3.18.0"
},
"devDependencies": {
"autoprefixer-core": "^5.2.1",
"autoprefixer-loader": "^2.0.0",
"babel": "^5.8.23",
"babel-eslint": "^4.1.1",
"babel-loader": "^5.0.0",
"babel-plugin-react-transform": "^1.0.2",
"babel-runtime": "^5.8.20",
"chai": "^3.3.0",
"css-loader": "^0.19.0",
"eslint": "^1.0.0",
"eslint-config-airbnb": "0.0.8",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^3.3.1",
"extract-text-webpack-plugin": "^0.8.0",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^1.6.1",
"jsdom": "^6.5.1",
"mocha": "^2.2.5",
"mocha-jsdom": "^1.0.0",
"mocha-loader": "^0.7.1",
"node-sass": "^3.2.0",
"nodemon": "^1.4.1",
"phantomjs-polyfill": "0.0.1",
"react": "^0.14.0-rc1",
"react-addons-test-utils": "^0.14.0-rc1",
"react-dom": "^0.14.0-rc1",
"react-transform-catch-errors": "^0.1.2",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.4",
"redux-devtools": "^2.0.0",
"sass-loader": "^2.0.0",
"style-loader": "^0.12.4",
"tracer": "^0.8.0",
"url-loader": "^0.5.6",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
}
}