-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.18 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.18 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
{
"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",
"build": "webpack --config webpack.config.js",
"test":
"concurrently --success='last' --kill-others \"webpack-dev-server\" \"sui-test e2e --baseUrl=http://localhost:8080\"",
"test:dev":
"concurrently --kill-others \"npm run dev\" \"sui-test e2e --baseUrl=http://localhost:8080 --gui\"",
"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",
"@s-ui/test": "1",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"concurrently": "3.5.1",
"copy-webpack-plugin": "3.0.1",
"husky": "0.14.3",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.5"
}
}