-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.46 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.46 KB
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
64
65
66
67
68
69
70
71
72
73
{
"name": "@nastauk/graphics",
"version": "0.0.1",
"description": "A monorepo for html based graphics",
"main": "index.js",
"repository": "git@github.com:NaSTAuk/graphics.git",
"author": "NaSTAuk <contact@nasta.tv>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*/*"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.11",
"@ts-tools/build": "^0.1.10",
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.11",
"@types/node": "^12.0.0",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"coveralls": "^3.0.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.0.0-beta6",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard-with-typescript": "^7.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.7.1",
"jest-emotion": "^10.0.11",
"lerna": "^3.13.4",
"markdownlint-cli": "^0.15.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"stylelint": "^10.0.1",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.6.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"scripts": {
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "run-p build:*",
"build:dist": "lerna run build --stream --parallel",
"build:typedefs": "lerna run build:typedefs --stream",
"test": "run-p test:tsc test:lint test:coverage",
"test:lint": "run-p -c test:lint:*",
"test:lint:ts": "eslint -f codeframe --ext .js,.ts,.tsx ./",
"test:lint:css": "stylelint \"packages/**/*.ts{,x}\"",
"test:lint:md": "markdownlint ./docs/ ./packages/ ./testing/ ./*.md",
"test:coverage": "jest --coverage",
"test:tsc": "tsc",
"fix": "yarn test:lint:ts --fix",
"clean": "git clean -xfd",
"start": "yarn workspace @nastauk/graphics-core start"
}
}