-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.3 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
{
"name": "mopidy.finder",
"version": "1.3.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run test:build && npm run test:exec && npm run test:lint",
"test:build": "npx tsc --project tsconfig.test.json --listEmittedFiles --locale ja-JP",
"test:exec": "mocha tests/**/*.test.js",
"test:lint": "npx eslint -c ./.eslintrc.json src/**/*.ts",
"build:prod": "npm run build:prodTs && npm run build:prodWp",
"build:prodTs": "npx tsc --project tsconfig.prod.json --listEmittedFiles --locale ja-JP",
"build:prodWp": "webpack --config webpack.config.prod.js",
"build:dev": "npm run build:devTs && npm run build:devWp",
"build:devTs": "npx tsc --project tsconfig.dev.json --listEmittedFiles --locale ja-JP",
"build:devWp": "webpack --config webpack.config.dev.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bootstrap": "^4.3.1",
"@types/chai": "^4.1.7",
"@types/jquery": "^3.3.30",
"@types/lodash": "^4.14.134",
"@types/mocha": "^5.2.7",
"@types/qs": "^6.5.3",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"@typescript-eslint/typescript-estree": "^1.10.2",
"chai": "^4.2.0",
"css-loader": "^3.0.0",
"eslint": "^5.16.0",
"file-loader": "^4.0.0",
"mocha": "^6.1.4",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.3",
"typescript": "3.4.1",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5"
},
"dependencies": {
"admin-lte": "3.0.0-beta.1",
"animate.css": "^3.7.2",
"axios": "^0.19.0",
"es6-promise": "^4.2.8",
"font-awesome": "^4.7.0",
"hammerjs": "^2.0.8",
"jquery": "^3.4.1",
"linq": "3.1.1",
"lodash": "^4.17.15",
"object.assign": "^4.1.0",
"qs": "^6.7.0",
"requirejs": "^2.3.6",
"responsive-toolkit": "^2.6.3",
"smoothscroll-polyfill": "^0.4.4",
"sortablejs": "^1.10.0-rc3",
"vue": "^2.6.10",
"vue-class-component": "^7.1.0",
"vue-infinite-loading": "^2.4.4",
"vue-property-decorator": "^8.2.1"
}
}