This repository has been archived by the owner on Aug 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.79 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
{
"name": "climbing-app",
"version": "0.0.0-beta.1",
"description": "Mythical climbing app.",
"keywords": [
"climbing",
"react",
"redux"
],
"homepage": "http://github.com/notaurologist/climbing",
"bug": "http://github.com/notaurologist/climbing/issues",
"author": "Jason LeMoine <[email protected]> (http://www.jasonlemoine.com)",
"license": "MIT",
"engines": {
"node": ">= 4.4.5"
},
"main": "app/main.js",
"scripts": {
"prebuild": "rimraf build",
"build": "webpack",
"build:devel": "NODE_ENV=development npm run build -- --config ./webpack/webpack.dev.config.js",
"build:production": "NODE_ENV=production npm run webpack -- --config ./webpack/webpack.prod.config.js",
"esformat": "esformatter --config .esformatterrc -i 'app/{src,test}/**/*.js'",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint --fix app/{src,test}/*",
"lint:css": "stylelint 'app/src/**/*.css'",
"test": "echo 'boo-urns'",
"test:watch": "npm run test -- -w",
"start": "babel-node ./app/server.js"
},
"repository": {
"type": "git",
"url": "http://github.com/notaurologist/climbing.git"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"node-uuid": "^1.4.7",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-react-constant-elements": "^6.8.0",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.7",
"babel-preset-es2015": "^6.4.1",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.23.1",
"deep-freeze": "0.0.1",
"enzyme": "^2.3.0",
"esformatter": "^0.9.5",
"esformatter-jsx": "^7.0.0",
"eslint": "^2.11.0",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"faucet": "0.0.1",
"file-loader": "^0.8.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.18.0",
"postcss": "^5.0.21",
"postcss-cssnext": "^2.6.0",
"postcss-loader": "^0.9.1",
"postcss-remove-root": "0.0.2",
"progress-bar-webpack-plugin": "^1.8.0",
"react-addons-perf": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"rimraf": "^2.5.2",
"sanitize.css": "^3.3.0",
"style-loader": "^0.13.1",
"stylelint": "^6.5.1",
"stylelint-config-standard": "^9.0.0",
"tape": "^4.5.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}