-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.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
{
"name": "react-hello",
"version": "1.0.0",
"description": "A hello world example React app",
"main": "build/hello.js",
"scripts": {
"clean": "rm -rf build && mkdir build",
"lint": "eslint source && eslint examples",
"build": "npm run clean && browserify -s appClient examples/app-client.js -t babelify > build/app-client.js",
"test": "echo 'No tests defined!'",
"check": "npm run lint && npm run build && npm test",
"start": "npm run check && babel-node examples/server.js",
"validate": "npm run check && npm outdated --depth 0"
},
"pre-commit": [
"validate"
],
"keywords": [
"react",
"component",
"user profile"
],
"authors": [
"Eric Elliott",
"Tim Routowicz"
],
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-eslint": "^7.1.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"eslint": "^3.10.2",
"eslint-plugin-react": "^6.7.1",
"express": "^4.12.4",
"pre-commit": "^1.0.7"
},
"dependencies": {
"lodash": "^4.17.1",
"prop-types": "^0.2.0",
"react-stampit": "^0.9.0"
}
}