-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
98 lines (98 loc) · 3.61 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
{
"name": "codimo",
"version": "1.0.0-alpha.3",
"private": true,
"description": "A simple platform for learning Computational Thinking",
"main": "client/main.jsx",
"scripts": {
"build": "webpack -p --config ./.dev-tools/config/webpack.config.prod.js --profile",
"build:start": "yarn build --progress && static-server dist",
"build:static": "static-server dist",
"build-storybook": "build-storybook",
"check-deps": "dep-tool compare . -a",
"flow:install": "flow-typed update",
"lint:css": "stylelint activities/**/*.jsx activities/**/*.js client/**/*.jsx client/**/*.js core/**/*.jsx core/**/*.js",
"lint:eslint": "eslint core activities client dev-elements .dev-tools --ext .js --ext .jsx --fix",
"lint:flow": "flow check",
"report:duplication": "jscpd -c .dev-tools/config/jscpd.yaml && static-server reports -i duplication.xml",
"start": "webpack-dev-server --progress --config ./.dev-tools/config/webpack.config.dev.js",
"stats": "webpack --config ./.dev-tools/config/webpack.config.dev.js --profile --json > stats.json",
"storybook:activities": "cross-env STORYBOOK_FOLDER=activities start-storybook -s ./dist -p 6008",
"storybook:platform": "cross-env STORYBOOK_FOLDER=client start-storybook -s ./dist -p 6007",
"storybook:core": "cross-env STORYBOOK_FOLDER=core start-storybook -s ./dist -p 6006",
"test": "node .dev-tools/scripts/test.js",
"test:coverage": "node .dev-tools/scripts/test.js --coverage"
},
"author": "Luciano Graziani <[email protected]>",
"license": "MIT",
"keywords": [
"codimo",
"pixijs",
"learning-to-code",
"react",
"storybooks",
"flowtype",
"educational-game",
"computational-thinking"
],
"moduleRoots": [
"dev-elements"
],
"dependencies": {
"dotenv": "4.0.0",
"gsap": "1.20.3",
"pixi.js": "4.6.1",
"react": "16.1.1",
"react-dom": "16.1.1",
"react-loadable": "5.3.1",
"react-router-dom": "4.2.2",
"speculation": "1.0.5",
"styled-components": "2.2.3",
"sweetalert2": "7.0.3",
"twemoji": "2.5.0"
},
"devDependencies": {
"@storybook/react": "3.2.16",
"babel-cli": "6.26.0",
"babel-eslint": "8.0.2",
"babel-loader": "7.1.2",
"babel-minify-webpack-plugin": "0.2.0",
"babel-plugin-dynamic-import-node": "1.2.0",
"babel-plugin-dynamic-import-webpack": "1.0.2",
"babel-plugin-styled-components": "1.3.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"chalk": "2.3.0",
"clean-webpack-plugin": "0.1.17",
"cross-env": "5.1.1",
"dependency-comparator": "2.0.0",
"eslint": "4.11.0",
"eslint-import-resolver-webpack": "0.8.3",
"eslint-plugin-filenames": "1.2.0",
"eslint-plugin-flowtype": "2.39.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-react": "7.5.1",
"expect": "21.2.1",
"file-loader": "1.1.5",
"flow-bin": "0.52.0",
"flow-typed": "2.2.3",
"html-webpack-plugin": "2.30.1",
"jest": "21.2.1",
"jest-styled-components": "4.9.0",
"jscpd": "0.6.17",
"react-test-renderer": "16.1.1",
"static-server": "2.0.6",
"stylelint": "8.2.0",
"stylelint-config-standard": "17.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-order": "0.7.0",
"stylelint-processor-styled-components": "1.1.0",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.4"
}
}