forked from rapidpro/rapidpro
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.26 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": "rapidpro",
"repository": "git@github.com:rapidpro/rapidpro.git",
"license": "AGPL-3.0",
"scripts": {
"start": "webpack-dev-server --config webpack/webpack.config.js --env.NODE_ENV=dev --progress --colors",
"build": "webpack --mode production --config webpack/webpack.config.js ./static/js/flow-editor/src/index.jsx --output ./static/js/flow-editor/dist/flow-editor.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"bower": "1.7.9",
"coffee-script": "1.9.3",
"less": "2.7.1"
},
"devDependencies": {
"@nyaruka/flow-editor": "1.1.8",
"babel-core": "6.26.3",
"babel-loader": "7.1.4",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"jasmine-core": "2.5.0",
"karma": "0.12.37",
"karma-chrome-launcher": "0.1.7",
"karma-coffee-preprocessor": "0.2.1",
"karma-coverage": "0.2.7",
"karma-coveralls": "0.1.5",
"karma-jasmine": "0.3.5",
"karma-ng-html2js-preprocessor": "0.1.1",
"karma-phantomjs-launcher": "1.0.2",
"phantomjs-prebuilt": "2.1.15",
"raf": "3.4.0",
"react": "16.3.2",
"react-dom": "16.3.2",
"webpack": "4.6.0",
"webpack-cli": "2.0.15"
}
}