forked from Mati365/ts-c-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.4 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.4 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
74
75
76
77
78
79
{
"scripts": {
"build": "rm -rf ./dist && node_modules/.bin/webpack --config=config/webpack.config.js",
"develop": "NODE_ENV=development yarn run build",
"build:production": "NODE_ENV=production yarn run build",
"test": "node_modules/.bin/jest --c config/jest.config.js",
"lint": "npx eslint . -c ./.eslintrc.yml"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"sh -c 'yarn lint'"
]
},
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@commitlint/types": "^17.4.0",
"@swc/core": "^1.3.25",
"@swc/jest": "^0.2.24",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/classnames": "^2.2.3",
"@types/jest": "^29.2.5",
"@types/long": "^5.0.0",
"@types/multer": "^1.4.3",
"@types/node": "^18.11.18",
"@types/ramda": "^0.28.20",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"circular-dependency-plugin": "^5.2.2",
"eslint": "^8.31.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-xss": "^0.1.12",
"eslint-webpack-plugin": "^3.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"nodemon-webpack-plugin": "^4.8.1",
"raw-loader": "^4.0.0",
"source-map-support": "^0.5.21",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"arraybuffer-loader": "^1.0.8",
"bcrypt": "^5.1.0",
"buffer": "^6.0.3",
"chalk": "4.1.2",
"classnames": "^2.3.2",
"codemirror": "^6.0.1",
"long": "^5.2.1",
"prettier": "^2.8.2",
"pretty-quick": "^3.1.3",
"prop-types": "^15.8.1",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"strip-ansi": "^7.0.1",
"styled-components": "^5.3.6",
"ts-enum-util": "^4.0.2",
"tslib": "^2.5.2",
"typescript": "^5.0.4"
},
"name": "pic-c-compiler",
"private": true
}