-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 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
{
"name": "reacttestingPOC",
"version": "1.0.0",
"description": "this POC is for sabha By Yogesh",
"main": "main.js",
"scripts": {
"test": "mocha --compilers js:babel-register --require ./test/helpers.js --require ./test/dom.js --recursive",
"test:watch": "npm test -- --watch",
"start": "webpack-dev-server --port 3000 --devtool eval --progress --colors --hot --content-base src",
"build": "webpack",
"eject": "react-scripts eject",
"sass": "sass --watch src/styles/scss:src/styles/css",
"sass:build": "sass src/styles/scss:src/styles/css"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"css-loader": "^0.28.7",
"enzyme": "^2.3.0",
"jsdom": "^9.3.0",
"mocha": "^2.5.3",
"node-sass": "^4.6.1",
"react-addons-test-utils": "^15.1.0",
"sass-loader": "^6.0.6",
"sinon": "^1.17.4",
"style-loader": "^0.19.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"react": "^15.1.0",
"react-dom": "^15.1.0"
}
}