-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
125 lines (125 loc) · 3.79 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "nuswhispers-vue",
"version": "1.0.0",
"description": "Vue.js port of NUSWhispers' front-end application.",
"author": "Melvin Lee <zy@zy.sg>",
"scripts": {
"postinstall": "npm run build",
"start": "cross-env NODE_ENV=production node server.js",
"build": "npm run clean && npm run build:client && npm run build:server",
"build:client": "cross-env NODE_ENV=production webpack --config ./internals/webpack/webpack.client.js --progress --hide-modules",
"build:server": "cross-env NODE_ENV=production webpack --config ./internals/webpack/webpack.server.js --progress --hide-modules",
"clean": "rm -rf ./dist/*",
"test": "jest",
"lint": "npm run lint:js && npm run lint:ts",
"lint:js": "eslint .",
"lint:ts": "tslint 'src/**/*.ts'",
"watch": "node server.js",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zyml/nuswhispers-vue"
},
"dependencies": {
"@types/autosize": "^3.0.4",
"@types/jest": "^19.2.3",
"@types/lodash": "^4.14.52",
"@types/storejs": "^1.3.1",
"@types/webfontloader": "^1.6.28",
"autoprefixer": "^7.0.1",
"autosize": "^3.0.21",
"awesome-typescript-loader": "^3.1.3",
"axios": "^0.16.1",
"camelcase-keys-recursive": "^0.8.2",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.0",
"css-loader": "^0.28.1",
"date-fns": "^1.28.4",
"dotenv": "^4.0.0",
"eventsource-polyfill": "^0.9.6",
"exports-loader": "^0.6.3",
"express": "^4.15.0",
"extract-text-webpack-plugin": "^2.1.0",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^0.11.1",
"handlebars": "^4.0.0",
"handlebars-loader": "^1.4.0",
"html-webpack-plugin": "^2.26.0",
"json-loader": "^0.5.4",
"lodash": "^4.17.4",
"lru-cache": "^4.0.2",
"memory-fs": "^0.4.1",
"normalize.css": "^7.0.0",
"normalizr": "^3.2.1",
"store": "^1.3.1",
"style-loader": "^0.17.0",
"sw-precache-webpack-plugin": "^0.11.0",
"tslint": "^5.2.0",
"tslint-loader": "^3.3.0",
"typescript": "^2.3.3",
"url-loader": "^0.5.7",
"vue": "^2.3.3",
"vue-class-component": "^5.0.1",
"vue-infinite-scroll": "^2.0.1",
"vue-loader": "^12.0.0",
"vue-property-decorator": "^5.0.1",
"vue-recaptcha": "^0.4.0",
"vue-router": "^2.5.3",
"vue-server-renderer": "^2.3.3",
"vue-style-loader": "^3.0.0",
"vue-template-compiler": "^2.3.3",
"vue-template-es2015-compiler": "^1.5.2",
"vue-typescript-import-dts": "^3.1.0",
"vuex": "^2.3.1",
"webfontloader": "^1.6.27",
"webpack": "^2.2.0",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.5.4"
},
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^20.0.1",
"js-beautify": "^1.6.14",
"ts-jest": "^20.0.3",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.15.0"
},
"engines": {
"node": ">= 7.0.0",
"npm": ">= 3.0.0"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"testRegex": "(/__tests__/.*(test|spec))\\.ts$",
"moduleFileExtensions": [
"vue",
"ts",
"js"
],
"moduleNameMapper": {
"^vue$": "<rootDir>/node_modules/vue/dist/vue.common.js"
},
"snapshotSerializers": [
"<rootDir>/internals/jest/html-snapshot-serializer.js"
],
"transform": {
"^.+\\.vue$": "<rootDir>/internals/jest/vue-preprocessor.js",
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"collectCoverageFrom": [
"src/**/*.{js,ts,vue}"
],
"coveragePathIgnorePatterns": [
"/internals/",
"/node_modules/",
"(/__tests__/.*(test|spec))\\.(js|ts)$"
]
}
}