-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "react-seed",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"release" : "sh ./build.sh",
"test": "mocha setup.js test/**/*-test.js && exit 0",
"test-watch": "mocha -w setup.js test/**/*-test.js && exit 0",
"build": "webpack",
"watch": "webpack --watch",
"start": "http-server ./app -a localhost -p 2000 -c-1",
"sass": "sass --watch app/styles/scss/style.scss:app/styles/css/style.css"
},
"author": "Pankaj Ladhar",
"license": "ISC",
"devDependencies": {
"react": "^0.14.8",
"react-addons-css-transition-group": "^15.4.1",
"react-dom": "^0.14.8",
"react-addons-test-utils": "^0.14.7",
"lodash": "^4.17.3"
},
"dependencies": {
"http-server": "^0.9.0",
"babel": "^6.3.26",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-airbnb": "^1.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.4.3",
"chai": "^3.5.0",
"enzyme": "^2.0.0",
"fetch-mock": "^5.0.3",
"jsdom": "^8.0.1",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"webpack": "^1.14.0"
}
}