-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.52 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
{
"name": "tutorial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf lib",
"compile": "babel src --out-dir lib",
"lint": "eslint src",
"test": "tape -r babel-register src/**/*-test.js | tap-spec",
"watch": "nodemon --exec npm run test --watch src",
"pretest": "npm run lint",
"start": "webpack-dev-server -d --inline --content-base ."
},
"author": "",
"license": "ISC",
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.12.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-router": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-es3-member-expression-literals": "^6.3.13",
"babel-plugin-transform-es3-property-literals": "^6.3.13",
"babel-plugin-transform-es5-property-mutators": "^6.3.13",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.21.0",
"deep-freeze": "0.0.1",
"eslint": "^2.10.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"faucet": "0.0.1",
"http-server": "^0.8.5",
"nodemon": "^1.8.1",
"rimraf": "^2.3.4",
"style-loader": "^0.13.0",
"tap-spec": "^4.1.1",
"tape": "^4.4.0",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
}