forked from decidim/decidim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.35 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "decidim",
"version": "0.7.0-pre",
"repository": {
"url": "[email protected]:decidim/decidim.git",
"type": "git"
},
"author": "Marc Riera <[email protected]>",
"license": "AGPLv3",
"scripts": {
"build": "webpack --env.dev",
"build:prod": "NODE_ENV=production webpack -p --env.prod",
"start": "webpack --env.dev --watch --progress --color --display-error-details",
"prelint": "tslint decidim-*/**/*.ts decidim-*/**/*.tsx",
"lint": "eslint -c .eslintrc.json --ext .js,.js.es6,.jsx .",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:ci": "npm run lint && npm test",
"graphql:download_schema": "apollo-codegen download-schema http://localhost:3000/api --output schema.json",
"pregraphql:generate_schema_types": "npm run graphql:download_schema",
"graphql:generate_schema_types": "apollo-codegen generate decidim-comments/**/*.graphql --schema schema.json --target typescript --output decidim-comments/app/frontend/support/schema.ts",
"postgraphql:generate_schema_types": "rm schema.json"
},
"devDependencies": {
"@types/classnames": "^2.2.0",
"@types/enzyme": "^2.8.1",
"@types/es6-promise": "^0.0.32",
"@types/faker": "^4.1.0",
"@types/jest": "^20.0.5",
"@types/jquery": "^3.2.10",
"@types/react": "^16.0.0",
"@types/react-dom": "^15.5.1",
"@types/uuid": "^3.0.0",
"awesome-typescript-loader": "^3.2.2",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-__coverage__": "~11.0.0",
"babel-plugin-transform-decorators-legacy": "~1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"enzyme": "^2.9.1",
"eslint": "^4.2.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"expose-loader": "~0.7.1",
"faker": "^4.1.0",
"jest": "^20.0.4",
"json-loader": "~0.5.4",
"progress-bar-webpack-plugin": "^1.10.0",
"react-addons-test-utils": "^15.6.0",
"select2": "^4.0.3",
"source-map-loader": "^0.2.1",
"ts-jest": "^20.0.7",
"tslint": "^5.5.0",
"tslint-react": "^3.2.0",
"typescript": "^2.4.1",
"typescript-babel-jest": "^1.0.4",
"webpack": "^3.4.1",
"webpack-bundle-analyzer": "^2.4.0",
"webpack-config-utils": "~2.3.0",
"yaml-jest": "^1.0.4",
"yaml-loader": "^0.5.0"
},
"dependencies": {
"apollo-codegen": "^0.16.2",
"classnames": "^2.2.5",
"graphql-anywhere": "^3.1.0",
"graphql-tag": "^2.4.2",
"jquery": "^3.2.1",
"moment": "^2.18.1",
"react": "^15.6.1",
"react-addons-update": "^15.6.0",
"react-apollo": "^1.4.10",
"react-dom": "^15.6.1",
"react-i18nify": "^1.8.7",
"react-test-renderer": "^15.6.1",
"uuid": "^3.1.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "typescript-babel-jest",
"\\.yml$": "yaml-jest",
"\\.(gql|graphql)$": "<rootDir>/decidim-comments/app/frontend/support/graphql_transformer.js",
".*": "babel-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
}
}