forked from codegram/jamstack-cfp
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.55 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
{
"name": "jamstack-cfp",
"private": true,
"scripts": {
"build": "gridsome build && npm run functions:build",
"develop": "env-cmd gridsome develop & npm run functions:serve",
"explore": "gridsome explore",
"test": "jest --watch",
"test:ci": "jest --passWithNoTests",
"functions:serve": "netlify-lambda serve functions",
"functions:build": "netlify-lambda build functions"
},
"dependencies": {
"@gridsome/source-filesystem": "^0.6.2",
"@gridsome/source-graphql": "^0.1.0",
"@gridsome/transformer-json": "^0.2.1",
"axios": "^0.19.2",
"gridsome": "^0.7.0",
"tailwindcss": "^1.2.0"
},
"devDependencies": {
"@testing-library/vue": "^5.0.2",
"env-cmd": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-gridsome": "^1.4.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-simple-import-sort": "^5.0.2",
"gridsome-plugin-tailwindcss": "^2.2.43",
"jest": "^25.3.0",
"jest-transform-graphql": "^2.1.0",
"netlify-lambda": "^1.6.3",
"node-sass": "^4.13.1",
"prettier": "^2.0.4",
"sass-loader": "^8.0.2",
"style-resources-loader": "^1.3.3",
"vue-jest": "^3.0.5",
"webpack-graphql-loader": "^1.0.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleNameMapper": {
"^~/(.*)$": "<rootDir>/src/$1"
},
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
"\\.(gql|graphql)$": "jest-transform-graphql"
}
}
}