-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "node-amazing-boilerplate",
"version": "1.0.0",
"description": "An amazing, simple and powerful Node boilerplate",
"main": "./src/index.js",
"repository": "[email protected]:WendellAdriel/node-amazing-boilerplate.git",
"author": "Wendell Adriel <[email protected]>",
"license": "MIT",
"scripts": {
"start": "backpack build && node ./build/main.js",
"flow": "flow",
"lint": "eslint ./src/** --color",
"test": "jest --forceExit",
"test:watch": "jest --watchAll",
"dev": "backpack",
"build": "backpack build",
"precommit": "yarn lint && yarn flow && yarn test",
"prepush": "yarn lint && yarn flow && yarn test"
},
"dependencies": {
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-stage-0": "^6.24.1",
"backpack-core": "^0.4.2",
"express": "^4.15.4",
"flow-bin": "^0.52.0"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-plugin-module-resolver": "^2.7.1",
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jest-cli": "^20.0.4",
"supertest": "^3.0.0"
},
"jest": {
"testEnvironment": "node",
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"globals": {
"__DEV__": true
}
}
}