-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.58 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "towerflow",
"version": "1.3.28",
"description": "The dev workflow used by The Great Tower Edu Inc.",
"files": [
"dist/",
"typings/",
"template/"
],
"bin": {
"towerflow": "dist/bin/index.js"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"dev": "tsc --watch",
"production": "tsc",
"test": "jest",
"publish-to-npm": "npm run production && npm publish",
"tsc-watch": "tsc -w --incremental -p .",
"tsc-compile": "tsc -p .",
"jest-test": "jest --ci --bail",
"jest-test:coverage": "jest -w=7 --ci --bail --coverage",
"jest-test:only-e2e": "jest --bail --testNamePattern=\"E2E:\"",
"jest-test:only-unit": "jest --bail --testNamePattern=\"Unit:\"",
"jest-test:only-integration": "jest --bail --testNamePattern=\"Integration:\"",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "eslint --ext .ts \"{src,test}/**/*.ts\"",
"lint-fix": "eslint --fix --ext .ts \"{src,test}/**/*.ts\""
},
"towerflow": {
"type": "node-app"
},
"keywords": [
"Tower Edu Inc.",
"Workflow"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sevenryze/towerflow.git"
},
"author": "sevenryze",
"license": "ISC",
"dependencies": {
"@types/jest": "^24.0.20",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^2.0.2",
"commander": "^2.20.3",
"cross-spawn": "^6.0.5",
"debug": "^4.1.1",
"file-loader": "^3.0.1",
"fs-extra": "^7.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"klaw-sync": "^6.0.0",
"prettier": "^1.18.2",
"semver": "^6.3.0",
"style-loader": "^0.23.1",
"ts-jest": "^24.1.0",
"ts-loader": "^5.4.5",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-loader": "^3.5.4",
"tslint-react": "^4.1.0",
"tty-table": "^2.8.0",
"typescript": "^3.6.4",
"typescript-styled-plugin": "^0.14.0",
"typescript-tslint-plugin": "^0.3.1",
"url-loader": "^1.1.2",
"webpack": "^4.41.2",
"webpack-dev-server": "^3.9.0"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.1",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^5.1.0",
"@types/html-webpack-plugin": "^3.2.1",
"@types/klaw-sync": "^6.0.0",
"@types/node": "^11.15.0",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@types/styled-components": "^4.1.19",
"@types/webpack": "^4.39.5",
"@types/webpack-dev-server": "^3.4.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"styled-components": "^4.4.0"
}
}