forked from we-learn-js/js-training-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.2 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
{
"name": "js-training-practice",
"version": "0.0.0",
"description": "JS Training practice project",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --devtool eval --progress --colors --open",
"build": "webpack --config webpack.config.js",
"test": "node test/nightwatch/execute",
"test:dev": "nodemon -w src -w test --exec 'npm test' --quiet",
"reset": "rm -Rf node_modules && npm i",
"prepush": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/we-learn-js/js-training-practice.git"
},
"author": "David Almeida <davidbarna@gmail.com>",
"bugs": {
"url": "https://github.com/we-learn-js/js-training-practice/issues"
},
"homepage": "https://github.com/we-learn-js/js-training-practice#readme",
"devDependencies": {
"@s-ui/helpers": "1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"chromedriver": "2.33.1",
"copy-webpack-plugin": "3.0.1",
"husky": "0.14.3",
"nightwatch": "0.9.16",
"nodemon": "1.12.1",
"selenium-server-standalone-jar": "3.5.3",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.5"
}
}