-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "crud-es6-localstorage",
"version": "1.0.0",
"description": "test frontend",
"main": "index.js",
"scripts": {
"dev": "set NODE_ENV=dev && webpack-dev-server",
"prod": "npm run clean && set NODE_ENV=production && webpack -p",
"clean": "rimraf ./dist/*",
"unit-test": "mocha --opts test/mocha.opts test/**/*.js",
"unit-test-watch": "mocha --opts test/mocha.opts test/**/*.js -w",
"testb": "node ./node_modules/selenium-cucumber-js/index.js -s ./features/step_definitions -p ./features/page_objects -o ./features/shared_objects -r ./features/reports",
"test2": "find ./ -name '*.test.js' | xargs mocha -R min -r babel/register",
"devtest": "webpack-dev-server --config webpack.tests.config.js"
},
"author": "rafael Faria",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/rrfaria/crud-es6-localstorage.git"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chromedriver": "^2.33.2",
"copy-webpack-plugin": "^4.2.1",
"css-loader": "^0.28.7",
"css-mqpacker": "^6.0.1",
"cucumber": "^3.1.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"mocha": "^4.0.1",
"node-sass": "^4.7.1",
"postcss": "^6.0.14",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-nested": "^2.1.2",
"postcss-remove-root": "0.0.2",
"postcss-reporter": "^5.0.0",
"pug-html-loader": "^1.1.5",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"selenium-cucumber-js": "^1.5.2",
"selenium-webdriver": "^3.6.0",
"style-loader": "^0.19.0",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"supertest": "^3.0.0",
"uglify-js": "^3.1.10",
"uglifyjs-webpack-plugin": "^1.1.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"babel-runtime": "^6.26.0"
}
}