-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "gogen-solver",
"version": "0.0.0",
"description": "A solver of Gogen puzzles",
"main": "index.js",
"scripts": {
"build": "lerna exec --parallel 'BABEL_ENV=build babel --root-mode upward src --out-dir dist --source-maps --extensions .ts,.tsx --delete-dir-on-start --no-comments'",
"prebuild": "yarn run test",
"lint": "run-p -c lint:*",
"lint:ts": "tslint 'packages/**/*.ts{,x}'",
"lint:css": "stylelint 'packages/**/*.ts{,x}'",
"test": "jest"
},
"keywords": [
"gogen",
"puzzle",
"solver"
],
"author": "Hussein Duvigneau <[email protected]> (https://notmybase.com)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/enzyme": "^3.9.3",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"babel-core": "7.0.0-bridge.0",
"enzyme": "^3.9.0",
"jest": "^24.8.0",
"lerna": "^3.13.1",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.7.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"webpack": "^4.32.2"
},
"resolutions": {
"babel-core": "^7.0.0-bridge.0"
},
"private": false,
"workspaces": [
"packages/*"
]
}