-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "devsnaps",
"version": "0.2.1",
"description": "Everyday solutions to everyday dev problems",
"author": "Alexandre Bonneau <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "cross-env HOST=localhost PORT=3000 nuxt",
"front": "yarn dev",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"back": "php -S localhost:4242 -t ../back-end/public"
},
"dependencies": {
"axios": "^0.16.2",
"dotenv": "^4.0.0",
"lodash": "^4.17.4",
"moment": "^2.19.1",
"nuxt": "^1.0.0-rc11",
"prismjs": "^1.8.4",
"vue-markdown": "^2.2.4",
"vuetify": "^0.16.9"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"node-sass": "^4.6.0",
"sass-loader": "^6.0.6",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vue-style-loader": "^3.0.3"
}
}