-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.64 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
{
"name": "simulation-store",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"start": "yarn build && node dist/index.js",
"start:dev": "nodemon --exec babel-node $npm_package_main",
"clean": "rimraf dist",
"build": "yarn clean && mkdir -p dist && node_modules/.bin/babel src -s -D -d dist",
"test": "jest --watch",
"lint": "esw -w src test"
},
"dependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"morgan": "^1.9.0",
"pg-promise": "~10.11.1",
"pug": "^2.0.4",
"rimraf": "^2.6.2",
"shortid": "2.2.15"
},
"devDependencies": {
"@babel/node": "^7.0.0",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.3",
"@types/node": "^10.11.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"eslint": "^4.12.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-watch": "^3.1.3",
"jest": "^23.6.0",
"nodemon": "^1.12.1",
"supertest": "^3.0.0"
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"import",
"jest"
],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
"node": true,
"jest": true
},
"extends": [
"eslint:recommended"
],
"rules": {
"jest/no-focused-tests": 2,
"jest/no-identical-title": 2
}
},
"jest": {
"testEnvironment": "node"
},
"nodemonConfig": {
"verbose": true,
"ignore": [
"*.test.js"
]
}
}