-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.67 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
{
"name": "regimen",
"private": true,
"version": "2.0.0",
"description": "A workout progression planning web app",
"scripts": {
"dev": "NODE_PATH=src/ npm run clean && node webpack.server.js",
"lint": "eslint src --ext js,jsx",
"clean": "rm -rf public/dist public/index.html",
"build": "npm run clean && NODE_PATH=src/ NODE_ENV=production webpack --config webpack.config.prod.js",
"start": "node server.js",
"test": "NODE_ENV=test NODE_PATH=src/ mocha --compilers js:babel-register --compilers jsx:babel-register"
},
"repository": {
"type": "git",
"url": "https://github.com/aduth/regimen.git"
},
"author": {
"name": "Andrew Duthie",
"email": "[email protected]",
"url": "https://andrewduthie.com"
},
"engines": {
"node": ">=5.7.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aduth/regimen/issues"
},
"homepage": "https://github.com/aduth/regimen",
"dependencies": {
"autoprefixer": "^6.5.3",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-lodash": "^3.2.10",
"babel-plugin-transform-react-remove-prop-types": "^0.2.11",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.16.0",
"babel-register": "^6.18.0",
"babel-runtime": "^6.18.0",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"css-loader": "^0.26.0",
"exports-loader": "^0.6.3",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"html-webpack-plugin": "^2.24.1",
"imports-loader": "^0.6.5",
"lodash": "^4.17.2",
"node-sass": "^3.13.0",
"path-to-regexp": "^1.7.0",
"postcss-loader": "^1.1.1",
"pouchdb": "^6.0.7",
"pouchdb-validation": "^1.2.1",
"promise-queue": "^2.2.3",
"raw-loader": "^0.5.1",
"react": "^15.4.1",
"react-addons-css-transition-group": "^15.4.1",
"react-dom": "^15.4.1",
"react-hot-loader": "^1.3.1",
"react-icons": "^2.2.1",
"react-jsonschema-form": "^0.41.2",
"react-redux": "^4.4.6",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"sass-loader": "^4.0.2",
"serve-static": "^1.11.1",
"shortid": "^2.2.6",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.27"
},
"devDependencies": {
"chai": "^3.5.0",
"deep-freeze": "0.0.1",
"eslint": "^3.11.1",
"eslint-config-wpcalypso": "^0.6.0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-wpcalypso": "^3.0.2",
"mocha": "^3.2.0",
"proxyquire": "^1.7.10",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"webpack-dev-server": "^2.1.0-beta.12"
}
}