-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.04 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
{
"scripts": {
"dev": " webpack-dev-server --hot --mode=development",
"build": "rm -rf dist && webpack --mode=production --display=minimal --hide-modules --progress --optimize-minimize",
"now-build": "npm run build",
"start": "node server.js",
"ci:e2e": "cypress run",
"test:e2e": "cypress run --config baseUrl=http://localhost:3000/",
"test:unit": "ava"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"axios": "^0.18.0",
"bulma": "^0.7.2",
"vue": "^2.5.17",
"vuex": "^3.0.1",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"ava": "1.0.0-rc.2",
"babel-loader": "^8.0.4",
"browserslist": "^4.3.4",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"cypress": "^3.1.2",
"express": "^4.16.4",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"font-awesome-svg-png": "^1.2.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.10.0",
"prettier": "^1.15.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.1.0",
"url-loader": "^1.1.2",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.4.4",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry"
}
]
]
},
"ava": {
"require": [
"@babel/register",
"@babel/polyfill"
]
},
"browserslist": [
"last 1 version",
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"prettier": {
"singleQuote": true,
"semi": false
},
"engines": {
"node": ">=8.*"
},
"name": "lsf",
"description": "Apprendre le vocabulaire LSF (Langue des Signes Française)",
"version": "5.1.1",
"repository": "[email protected]:parlr/lsf.git",
"author": "Edouard Lopez <[email protected]>"
}