-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.94 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": "ubiquotes-game",
"version": "0.0.1",
"description": "2048 game simulation.",
"main": "index.js",
"scripts": {
"test": "jest",
"webpack": "webpack",
"build": "webpack --env.mode production",
"postbuild": "cpy src/main.css dist && cpy build-assests/favicon.ico dist",
"prettier": "prettier \"**/*.+(js|json)\"",
"format": "npm run prettier -- --write ",
"lint": "eslint \"**/*.+(js)\"",
"flow": "flow",
"validate": "npm run lint && npm run prettier -- --list-different && npm run flow && npm run test",
"precommit": "lint-staged && npm run flow && npm run test",
"test:dev": "jest --watch",
"build:dev": "webpack-dev-server --open --hotOnly"
},
"keywords": [
"vue"
],
"author": "Nikhil Kuyya",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@vue/test-utils": "^1.0.0-beta.25",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^1.0.0",
"cpy-cli": "^2.0.0",
"css-loader": "^1.0.1",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"flow-bin": "^0.86.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.4",
"jest": "^23.6.0",
"lint-staged": "^8.0.5",
"mini-css-extract-plugin": "^0.4.5",
"prettier": "^1.15.2",
"vue": "^2.5.17",
"vue-jest": "^3.0.0",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-config-utils": "^2.3.1",
"webpack-dev-middleware": "^3.4.0",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"vuex": "^3.0.1"
}
}