-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.33 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
{
"name": "d3fy-react-forms",
"version": "1.0.0",
"description": "A set of React components to generate form elements that are easily styleable",
"main": "index.js",
"repository": {
"url": "git@github.com:d3fydev/d3fy-react-forms.git",
"type": "git"
},
"author": "Irvin Lee Eduliantes <irvin@d3fy.com>",
"license": "MIT",
"devDependencies": {
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"scripts": {
"dev:test": "webpack-dev-server --config webpack.test.config.js --hot --inline --progress --colors --watch --display-error-details --display-cached --content-base ./build/",
"dev:hot": "webpack-dev-server --hot --inline --progress --colors --watch --display-error-details --display-cached --content-base ./build/",
"test:bundle": "webpack --config webpack.test.config.js --progress",
"prod": "webpack --config webpack.prod.config.js --progress -p",
"test": "mocha --require test/_setup.js --compilers js:babel-core/register --recursive 'src/**/*.spec.js' --reporter dot",
"test:watch": "npm run test -- --watch --watch-extensions jsx",
"start": "node server.js"
}
}