forked from recca0120/laravel-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.87 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"test": "jest",
"test:watch": "jest --watch",
"precommit": "lint-staged",
"prettier": "prettier",
"prettier-write": "npm run prettier -- --single-quote --trailing-comma es5 --write --print-width 120 --tab-width 4",
"prettier-project": "npm run prettier-write -- resources/**/*.{js,scss,ts}"
},
"dependencies": {
"@types/codemirror": "0.0.60",
"axios": "^0.18.0",
"cli-spinners": "^1.3.1",
"codemirror": "^5.40.0",
"jquery-mousewheel": "^3.1.13",
"jquery.terminal": "^1.21.0"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/jquery": "^3.3.6",
"@types/node": "^10.9.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.24.7",
"browser-sync-webpack-plugin": "^2.2.2",
"cross-env": "^5.2.0",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"fs-extra": "^7.0.0",
"husky": "^0.14.3",
"jest": "^23.5.0",
"jquery": "^3.3.1",
"laravel-mix": "^2.1.14",
"lint-staged": "^7.2.2",
"lodash": "^4.17.10",
"prettier": "^1.14.2",
"ts-jest": "^23.1.4",
"ts-loader": "^3.5.0",
"typescript": "^3.0.3"
},
"lint-staged": {
"linters": {
"resources/**/*.{ts,js,scss,less,json}": [
"npm run prettier-write --",
"git add"
],
"webpack.mix.js": [
"npm run prettier-write --",
"git add"
]
}
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}