-
Notifications
You must be signed in to change notification settings - Fork 310
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "@stylexjs/webpack-plugin",
"version": "0.9.3",
"description": "Webpack plugin for StyleX",
"main": "src/index.js",
"repository": "https://www.github.com/facebook/stylex",
"license": "MIT",
"scripts": {
"fixtures:webpack": "webpack build --config __tests__/__fixtures__/webpack.config.js",
"fixtures:webpack:watch": "NODE_ENV=development webpack build --watch --config __tests__/__fixtures__/webpack.config.js",
"build": "webpack build --config __tests__/__fixtures__/webpack.config.js",
"test": "jest"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"__builds__",
"/__fixtures__/"
],
"testEnvironment": "node"
},
"dependencies": {
"@babel/core": "^7.25.8",
"@babel/plugin-syntax-flow": "^7.25.7",
"@babel/plugin-syntax-jsx": "^7.25.7",
"@babel/plugin-syntax-typescript": "^7.25.7",
"@stylexjs/babel-plugin": "0.9.3"
},
"peerDependencies": {
"webpack": ">=5.0.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.25.7",
"webpack": "^5.88.2"
}
}