generated from fullstacktf/my-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "my-application",
"version": "1.0.0",
"description": "Basic boilerplate project with JavaScript",
"engineStrict": true,
"engines": {
"node": ">= 12.13.0"
},
"contributors": [
"Daniel Ramos <danielramosacosta@hotmail.com>"
],
"license": "ISC",
"scripts": {
"build": "babel src -x .js -d build",
"start": "node build/app.js",
"start:dev": "nodemon --exec babel-node src/app.js",
"lint": "eslint --ext .js ./src",
"lint:fix": "eslint --ext .js --fix ./src",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"clean": "rimraf coverage build tmp"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-transform-modules-commonjs": "7.10.4",
"babel-jest": "^26.3.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"rimraf": "3.0.2"
},
"jest": {
"testEnvironment": "node",
"moduleDirectories": [
"./node_modules",
"./src"
],
"modulePathIgnorePatterns": [
"<rootDir>/build/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
]
}
}