-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "node-acceptance-testing-sample",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start-dev": "nodemon ./bin/www",
"test": "./node_modules/.bin/jest",
"unit-integration-test": "./node_modules/.bin/jest --testMatch='<rootDir>/spec/(unit|integration)/*.spec.js'",
"acceptance-test": "./node_modules/.bin/jest --testMatch='<rootDir>/spec/acceptance/**/*.spec.js'"
},
"dependencies": {
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.15.5",
"express-handlebars": "^3.0.0",
"morgan": "~1.9.0",
"serve-favicon": "~2.4.5"
},
"devDependencies": {
"@types/jest": "^21.1.8",
"@types/supertest": "^2.0.4",
"babel-preset-env": "^1.6.1",
"chromedriver": "^2.33.2",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"get-port": "^3.2.0",
"jest": "^21.2.1",
"nodemon": "^1.12.1",
"standard": "^10.0.3",
"stylelint": "^8.3.1",
"stylelint-config-standard": "^18.0.0",
"supertest": "^3.0.0",
"webdriverio": "^4.9.9"
},
"babel": {
"presets": [
"env"
]
},
"eslintConfig": {
"extends": [
"standard"
],
"env": {
"jest": true
}
},
"stylelint": {
"extends": "stylelint-config-standard"
}
}