-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 1.65 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
{
"name": "modern-js-workshop",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "jest --watchAll",
"start": "parcel index.html",
"build": "rm -rf dist && parcel build index.html",
"build-project": "parcel build final-project/index.html",
"precommit": "lint-staged",
"delete": "git reset --hard && git clean -dfe coverage dist && npm install"
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testPathIgnorePatterns": [
"node_modules",
"dist",
"coverage"
]
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"eslint": "^5.11.1",
"eslint-config-aerian": "^1.0.5",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lint-staged": "^7.2.0",
"node-sass": "^4.9.2",
"parcel-bundler": "^1.12.3",
"prettier": "^1.15.3"
},
"dependencies": {
"babel-core": "^7.0.0-bridge.0",
"bricks.js": "^1.8.0"
},
"lint-staged": {
"*.{js,jsx,css,md,scss}": [
"prettier --write",
"git add",
"jest --ci --findRelatedTests"
],
"*.{ts,tsx}": [
"tslint --fix",
"git add",
"jest --ci --findRelatedTests"
]
},
"babel": {
"plugins": [
"@babel/plugin-transform-runtime"
]
}
}