-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 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
{
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/jest/**",
"**/jest"
]
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "eslint -c .eslintrc 'packages/core-tiny-spring/src/**' 'packages/react-tiny-spring/src/**' 'packages/preact-tiny-spring/src/**' --ext .ts,.tsx",
"lint:fix": "yarn lint --fix",
"lint:example": "eslint -c .eslintrc packages/preact-examples/src/components/** --ext .ts,.tsx",
"lint:example:fix": "yarn lint:example --fix",
"test": "jest",
"test:watch": "jest --watch",
"start:react": "cd packages/react-examples && yarn start",
"start:preact": "cd packages/preact-examples && yarn start"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.12",
"@types/node": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.9.0",
"@typescript-eslint/typescript-estree": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-synacor": "^3.0.4",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.8.0",
"lerna": "^3.13.4",
"prettier": "^1.17.1",
"prettier-eslint": "^8.8.2",
"rollup": "^1.11.3",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-size-snapshot": "^0.8.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.21.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 2
}
}