-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.72 KB
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
{
"name": "nuxt-steem",
"version": "1.0.0",
"description": "Nuxtjs based Steem interface",
"author": "Cryptouru",
"private": true,
"scripts": {
"server": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"start-server": "cross-env NODE_ENV=production node server/index.js",
"heroku-postbuild": "npm run build",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"test": "npm run unit --silent",
"unit": "jest --config tests/unit/jest.conf.js",
"storybook": "start-storybook -p 9001 -c .storybook -s ./node_modules/vuetify/dist/"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"body-parser": "^1.18.3",
"dsteem": "^0.9.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"nuxt": "^1.4.5",
"remark": "^9.0.0",
"remark-unlink": "^2.1.1",
"steemconnect": "^2.0.1",
"strip-markdown": "^3.0.3",
"vuetify": "^1.4.1"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.11",
"@storybook/addon-links": "^3.4.11",
"@storybook/addon-storyshots": "^3.4.11",
"@storybook/addons": "^3.4.11",
"@storybook/vue": "^3.4.11",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.1",
"babel-runtime": "^6.26.0",
"cross-env": "^5.0.1",
"eslint": "^5.12.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^4.0.0",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^1.0.0",
"jest-vue-preprocessor": "^1.4.0",
"nodemon": "^1.18.9",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vue-jest": "^2.6.0"
}
}